Log in

View Full Version : Iframe, Valign'ed image



gothicangel
09-29-2007, 01:03 AM
Ok, i found a way to valign an image, by making a table with width="100%" height="100%" and the td valign="bottom".

Ok, now i have a banner at the top, with a menu under, then a iframe under that.

But after putting the iframe, the image stretches the page down, and doesnt go over the iframe.

I was wondering if you all had some neat script that has the image on like a "top layer", so that when you scroll down, the image is still on the bottom right, but also appears over the iframe if needed.

devaka
10-06-2007, 05:11 PM
try fixed position

#element {
position: fixed;
bottom: 0;
right: 0;
}
Must be working