Anyone know html?

dynastygal

Up-and-Coming Sensation
Joined
Jan 14, 2008
Messages
447
Reaction score
0
FP$
623
Hello,

Does anyone know html? Even basic?

Because I'm trying to align some text to the right of an image:

Code:
<center><a href="http://psrvtest.proboards.com/index.cgi?board=general"><img src="http://i35.tinypic.com/293y4nr.png"></center></a><p align=right>text</p>

But it pushes the text right to the other side of the page, and one space down from the image. I need to specify how far from the image it is to be, and have it next to the image, how do I do this?
 
try putting the <p tags right after the image code, and then put all your finish codes after. I think that it becomes a totally new code if you start something after a ending tag.
 
Okay, I'll have to check this out again when I get home, as I'm stuck with IE at the moment and a firewall is stopping your site's images from loading.

Will be 2-3 hours most likely. Sorry ~neutral~
 
Perhaps table it? Only use if all else fails -D-

Code:
<TABLE BORDER="0" CELLPADDING="3" CELLSPACING="3">
<TR>
<TD> Image</TD>
<TD> Second Half of Text</TD>
</TR>
</TABLE>
 
<p><img style="float:left;margin:5px;" src="whatever.jpg" />Blah blah blah blah</p>
 
Back
Top Bottom