Page 1 of 1

Need HTML help with pictures

Posted: Sat Jan 06, 2007 10:34 pm
by tammy1072
I'm trying to add 2 graphic pictures side by side....I add the first IMG SRC code then the next and it puts the picture below it...how do I keep it beside the other?

Thanks!
Tammy

Posted: Mon Jan 08, 2007 4:48 pm
by tammy1072
Hey,Thanks!!

Now I need to know how to do that...i'm sorry..

Is it cellspacing something another? How do I do like 4 in each row...across?

I'm doing this on myspace(those lil myspce 'icons'>I've tried using the <tr > then <td > closing off the code with </td > and then as many as I want with </ tr> but I can only do 2 wide.If I try and do 3 or 4...it puts huge gaps in between them? I'm so lost on this.... :(

Posted: Wed Jan 10, 2007 4:13 am
by BizEngine
try this

<table border="0" cellspacing="0" cellpadding="0">
<tr>
<!-- column 1 -->
<td align="center" style="margin: 5px;">
<img src="picture1.jpg">
</td>
<!-- column 2 -->
<td align="center" style="margin: 5px;">
<img src="picture2.jpg">
</td>
<!-- column 3 -->
<td align="center" style="margin: 5px;">
<img src="picture3.jpg">
</td>
<!-- column 4 -->
<td align="center" style="margin: 5px;">
<img src="picture4.jpg">
</td>
</tr>
</table>
tammy1072 wrote:Hey,Thanks!!

Now I need to know how to do that...i'm sorry..

Is it cellspacing something another? How do I do like 4 in each row...across?

I'm doing this on myspace(those lil myspce 'icons'>I've tried using the <tr > then <td > closing off the code with </td > and then as many as I want with </ tr> but I can only do 2 wide.If I try and do 3 or 4...it puts huge gaps in between them? I'm so lost on this.... :(