Hope me! IE no like position:fixed? →[More:]So, I have a client whose website has a few very long scrolling pages, and these pages have a fixed-position Home button in the right-hand column. Apparently, IE does not position the button correctly. Instead of 80% down from the top, the button is more like 10% from the top. I've been asked to fix this. Unfortunately, my html skills aren't great, and I know nothing about getting things to work with IE.
How does one get IE (of various flavors) playing nice with position:fixed?
Here's the css they've used. Pretty basic...
homelink {
height: auto;
width: auto;
border: 0pt;
padding: 0pt;
background-color: #ffffff;
top: 80%;
margin-left: 51px;
position: fixed;
}
Thanks!