View Full Version : Aligning Images


pockyreiko
09-04-2006, 04:25 AM
Hey there! I posted a while ago, but I'm not a regular so you guys probably don't recognize me...

I'm making a new layout for my site which requires the background to sort of act as an image map with an iframe in it also. Since I didn't think that was possible, I'm just using an image with no background image. However, when I wanted to use a background image, I wanted it to be positioned on the bottom. Is there some way I can position a regular image to the bottom of the page? Here's the link:
http://www.freewebs.com/blind_bandit/index2.htm

PS: Image map links aren't up yet, so there's no need to click the links.

Thank you!

bourdelson
09-04-2006, 02:15 PM
You could do this:

<img src="image.jpg" style="position:absolute; bottom:value;" />

For value, you can use one of these:

auto - lets the browser decide the bottom of the page

#% - sets the image whatever percent from the bottom of the page

#px - or cm, or whatever. sets the image that many pixels from the bottom of the page.

Hope that helps you! :)

pockyreiko
09-04-2006, 04:27 PM
Thank you so much!

bourdelson
09-04-2006, 08:39 PM
You're welcome! :)