Thread: Fixed position
View Single Post
Old 09-06-2012, 04:03 AM   #1
davikerkrish
Registered User
 
Join Date: Jul 2012
Posts: 111
Fixed position

All browsers support the css property �position:fixed�, but not IE6. I had to find a solution for this since the social icons in this blog are having a fixed position.

* html .fixed_div{
position: absolute; /* position fixed for IE6 */
top: expression(104+((e=document.documentElement.scroll Top)?e:document.body.scrollTop)+'px');
left: expression(15+((e=document.documentElement.scrollL eft)?e:document.body.scrollLeft)+'px');
}
__________________

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
davikerkrish is offline   Reply With Quote