Sten 0 Report post Posted August 5, 2007 Does anyone know how to get fixed positions to work in Internet Explorer? Or something so they still stay in the same spot when you scroll down?I'm making something and I need 2 images fixed, on in top left corner and one in bottom right corner. its really annoying, so does anyone know what to do? cos i dont and i really need to, lol, for a little something im doing.just another problem with internet explorer, its terrible!anyway anyone know what to do? Share this post Link to post Share on other sites
TavoxPeru 0 Report post Posted August 5, 2007 Does anyone know how to get fixed positions to work in Internet Explorer? Or something so they still stay in the same spot when you scroll down?I'm making something and I need 2 images fixed, on in top left corner and one in bottom right corner. its really annoying, so does anyone know what to do? cos i dont and i really need to, lol, for a little something im doing.just another problem with internet explorer, its terrible!anyway anyone know what to do?Use css to put the image on top left corner, something like this will work i guess:#imageTopLeft { position:absolute; top:0px; left:0px }For the image on bottom right corner i also guess that you must use css but right now i don't know how to do it.Best regards, Share this post Link to post Share on other sites
iGuest 3 Report post Posted August 5, 2007 I've told you how to do this already, but anyway .fixedwrapper { position: fixed; width: 100%; height: 100%; }.(thing you want fixed) { position: absolute; top: (top); left: (left); right: (right); bottom: (bottom); } <div class="fixedwrapper"><whatever class="(thing you want fixed)"></div> That works Share this post Link to post Share on other sites
Sten 0 Report post Posted August 5, 2007 lol jay, i dont remember it when u just tell me.and wasnt that the day when we were all stompy in the multimedia room? lmao Share this post Link to post Share on other sites