jonathan12
03-30-2003, 07:57 AM
This may sound stupid, but I need to know how to make two images show up directly next to each other.
say the "o" is an image and the "l" is an image
o l
I tried putting the img tags directly next to each other but the one after showed up below.... I know it sounds simple but I can't firgure it out.
angelivion
03-30-2003, 08:16 AM
I think it went under the first image because there was not enough space for it to be on the same line. If you're keeping it in tables, that could be the case. If it is in tables, then you'll just have to increase the width of the table.
two options,
place the two image tags together without any space in between.
<img src="blah.gif"><img src="blah2.gif">
or place them in a table like so...
<table cellpadding="0" cellspacing="0" border="0"><tr>
<td valign="top"><img src="blah.gif"></td>
<td valign="top"><img src="blah2.gif"></td>
</tr></table>
both should produce the same results but do depend on the current area they are being shown in.
jonathan12
03-30-2003, 08:19 PM
Originally posted by pb&j
two options,
place the two image tags together without any space in between.
<img src="blah.gif"><img src="blah2.gif">
or place them in a table like so...
<table cellpadding="0" cellspacing="0" border="0"><tr>
<td valign="top"><img src="blah.gif"></td>
<td valign="top"><img src="blah2.gif"></td>
</tr></table>
both should produce the same results but do depend on the current area they are being shown in.
You see its hard to do that because one of them is my tracking thing so the tag is extremely long and so it gets messed yp when I put them next to each other.
can you post a link to the page in question and state exactly which parts you are talking about? thanks.