PDA

View Full Version : Position:fixed not working in IE7 Myspace



shrempff
21 Nov 2008, 11:16 AM
I am trying to create a footer in a Myspace profile with a fixed position. View the page here:

<a href="http://www.myspace.com/blaine_factor" target="_blank">http://www.myspace.com/blaine_factor</a>

The effect works great in Myspace when viewed with Firefox, but as always, IE7 is having some trouble with it. Here is the funny thing though, the code works great in IE7 as long as it isn't in Myspace. Once placed into Myspace the code stops working. Is it possible that Myspace disables position:fixed in IE7?

Here is the CSS that I am using to position the footer:

.toy_footer {
background: url(http://slingerlandweb.com/myspace_background/images/metal_footer.png) no-repeat;
height: 328px;
width: 1256px;
position: fixed;
bottom: 0px;
left: 0px;
}

body > div.toy_footer {
position: fixed;
}

* HTML div.toy_footer {
position: absolute;
}

Someone Please help me out with this. I'm pulling my hair out!