View Full Version : Imaging Problemo


Motoman
01-07-2005, 03:42 PM
alright, now I'm trying to do two pictures beside each other, with hspace="105", and that's working fine, but I need to put text right under each.

My current code is:

<p align="left">
<img src="/images/********.jpg" border="4" hspace="105" > <img src="/images/marauders.jpg" width="100" height="75" border="4">
<br /><b>First Sergeant
<br />C/ CMSgt *******, *</b>
</p>

And here is a picture of what I want.

http://www.quarternetworks.net/correct.jpg



Thanks alot
-Moto

kittycat
01-07-2005, 10:07 PM
What you want might work better as a table...

<table>
<tr>
<td>image 1</td>
<td> image 2</td>
</tr>
<tr>
<td>caption 1</td>
<td>caption 2</td>
</tr>
</table>

darklitch
01-08-2005, 03:16 AM
use tables