Click to See Complete Forum and Search --> : How to move image across page with HTML?


newbie010
07-11-2006, 08:48 PM
I would like to reposition a few images, that currently by program when used as links will only appear on the left side of my page. I was told I should be able to move to center or right side using HTML code. Would anyone have this code or be able to direct me to it? Thank you, Rod.

felgall
07-11-2006, 10:09 PM
Positioning is handled by CSS not HTML.

To put them on the right or in the centre use:

a img {float:right;}
a img (margin:0 auto;}

newbie010
07-12-2006, 08:23 AM
Thanks again for your assistance "felgall"