Page 1 of 1

Newbie Question - aligning images in blocks to center

Posted: Thu May 13, 2004 1:59 pm
by drujr
Hey all

I'm a newbie so bear with me. I cannot find how to have images in blocks automatically align to the center of the column that they are in. check out my website http://www.sickofit.org to get an idea of what i mean (images in the right column, and the bottom left)

Any help would be very appreciated.

thanks for your time
Dave

Posted: Thu May 13, 2004 2:02 pm
by magicrobotmonkey
<center> <img> </center>

is one way

Posted: Thu May 13, 2004 2:03 pm
by PrObLeM
really thats an html issue...you just need to have the location ready for blocks

Code: Select all

<table width=800>
<tr>
<td>Left</td><td>Center</td><td>right</td>
</tr>
</table>

Posted: Thu May 13, 2004 5:06 pm
by drujr
Thanks fellas! I went back in and checked out the code... there WAS a </center> but no <center>! So I added it in, and it works now. Thanks!

Posted: Thu May 13, 2004 5:09 pm
by tim
just a bit more FYI

you can align <td> tags
<td align=right>
<table border=0 width=100% align=left> < align a table

alot of ways.