I’m trying to use this fixed floating banner script in IE6 -> Demo
According to explanation of developer:
“Caveat: IE6
Since we’re solving this effect using position: fixed, IE6 doesn’t support this CSS property. I’m not saying that IE6 doesn’t matter, but I’m suggesting that this effect isn’t a requirement to be able to interact with the site properly, so if IE6 users don’t see this extra effect, I’m okay with this. As I explained in the screencast, you’ll need to decide this yourself, check your site’s demographic, whether it’s a personal project, etc.”
Is this possible to adopt this effect in IE6 ?
In IE6, you can use
position:absolute;to work something likeposition:fixed;.It will need a bit of additional markup in the shape of a wrapping
<div>, but if you’re supporting IE6 you’ll be used to doing stuff like that anyway.See here for instructions: http://ryanfait.com/resources/fixed-positioning-in-internet-explorer/
Hope that helps.