Click to See Complete Forum and Search --> : IE6 image positioning


bobbyopulent
07-19-2007, 11:14 AM
I did search the forums first to address this but I noticed other people who had this problem also listed a number of other problems so I couldn't extract just what I needed.

Simply, I'm trying to position an image in the lower right of the window for IE6. I'm trying to make it so that when one scrolls up and down a page the image stays in place, at the bottom right.

Of course it works in a bunch of other browsers (including IE5 for mac)

Currently the image I'm using is in an image tag, but if it'll work, I can make it a background image.

This is the code im using now

.Align {
position:fixed;
bottom: 0px;
right: 0px;
}

Any help is appreciated!

KDLA
07-19-2007, 02:11 PM
There are javascripts that do this, but if you're wanting something really simple, try:
<body style="background: url(file.jpg) no-repeat right bottom fixed;">


(Some browsers do not recognize "fixed" unless it is in the body tag.)

bobbyopulent
07-20-2007, 04:58 PM
thanks!