Xzeekz
02-18-2003, 03:51 AM
Well, i'm building the same web page, but i have another question.
If I have a picture, how do i put text right beside it??? If you can answer this question, please reply.
Thanx :)
gotfaith3
02-18-2003, 03:55 AM
just right after you put your img tag the start typin... what do you mean?? what is your page URL?
lefty
02-18-2003, 03:59 AM
I think you're looking for something like this:
<img src="image.jpg" align=left">lots of text here
(or align right, whichever)
That's start your text at the top of the image instead of the bottom.
by the way, your siggy can't be more than three lines. ;)
Xzeekz
02-18-2003, 04:18 AM
Can you tell me again how that works, i don't get it. Sry
Thx for replying
bejayel
02-18-2003, 06:09 AM
actually it has to be done this way. well there are otehrs, but this will be the easiest.
<table border="0" cellpadding="3" cellspacing="0">
<tr>
<td>
<img src="image.gif">
</td>
<td valign="top"align="left">
Your typing here
</td>
</tr>
</table>
anyway i hope that helps a little.