View Full Version : Centering Image


SamanthaSkye
02-03-2004, 11:54 PM
The image I'm trying to position won't center... help?

<div align="center"><img style="position:absolute; top:25px; width:638px;
height:320px" src="http://www.darkbluelight.com/spring/spring.jpg">
</div>

Cherchezlafemme
02-03-2004, 11:58 PM
use <center></center>

kittycat
02-04-2004, 12:04 AM
It's probably the absolute positioning you have in there for position from the top.
Try this and see if it works...
<div style="position:absolute; top:25px; width: 100%" align="center"><img style="width:638px;
height:320px" src="http://www.darkbluelight.com/spring/spring.jpg">
</div>

SamanthaSkye
02-04-2004, 12:15 AM
<div style="position:absolute; top:25px; width: 100%" align="center"><img style="width:638px;
height:320px" src="http://www.darkbluelight.com/spring/spring.jpg">
</div>

Yesh! Thanks so much :)