vote up 1 vote down star
1

Hello.

position:fixed that doesn't work for Internet explorer 6. I can't really understand the fixes found on google. I need it to work in IE6, IE7, IE8 & FireFox 3.0.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
    <meta http-equiv="Content-type" content="text/html; charset=iso-8859-1" />
    <title>Sidebar fixed</title>
    <style type="text/css">
    #wrapper {
    	position:relative;
    	width:900px;
    	margin:0 auto 0 auto;
    }
    #sidebar_left {
    	position:fixed;
    	height:200px;
    	width:200px;
    	border:1px solid #000;
    }
    #sidebar_right {
    	position:fixed;
    	height:200px;
    	width:200px;
    	margin-left:700px;
    	border:1px solid #000;
    }
    #content {
    	position:absolute;
    	height:2000px;
    	width:480px;
    	margin-left:210px;
    	border:1px solid #000;
    }
    </style>
</head>
<body>
    <div id="wrapper">
    	<div id="sidebar_left">
    		<p>Left sidebar</p>
    	</div>
    	<div id="sidebar_right">
    		<p>Right sidebar</p>
    	</div>
    	<div id="content">
    		<p>This is the content</p>
    	</div>
    </div>
</body>
</html>
flag

78% accept rate

3 Answers

vote up 0 vote down check

Found this solution which I tweaked ( Basically the lines I changed was: $('#sidebar_left').css('top',document.documentElement.scrollTop); ):

// Editing Instructions
// 1. Change '#your_div_id' to whatever the ID attribute of your DIV is
// 2. Change '175' to whatever the height of your header is, if you have no header, set to 0

/********************************
*   (C) 2009 - Thiago Barbedo   *
*   - tbarbedo@gmail.com        *
*********************************/
window.onscroll = function()
{
    if( window.XMLHttpRequest ) {
        if (document.documentElement.scrollTop > 299 || self.pageYOffset > 299 && document.documentElement.scrollBottom > 100) {
            $('#sidebar_left').css('top',document.documentElement.scrollTop);
            $('#sidebar_right').css('top',document.documentElement.scrollTop);
        } else if (document.documentElement.scrollTop < 299 || self.pageYOffset < 299) {
            $('#sidebar_left').css('top','299px');
            $('#sidebar_right').css('top','299px');
        }
    }
}

It jitters and looks bad, but work on all browsers including IE6.

link|flag
vote up 2 vote down

Don't support IE6! The sooner people stop hacking sites about for IE6, the less traction it will have and the quicker it will die! Or, add this code after your first style block;

<!--[if IE 6]>  
<style type="text/css">  
#sidebar_right, #sidebar_left {  
position:absolute; /* position fixed for IE6 */  
top:expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px');  
left:expression(0+((e=document.documentElement.scrollLeft)?e:document.body.scrollLeft)+'px');  
}  
</style>  
<![endif]-->

The result isn't super-smooth, but it does work.

UPDATE

I wasn't too clear on how this should be used; simply add the id (or class) of any elements that have "position:fixed" to the declaration list at the start of the above block and they will behave themselves in IE6.

link|flag
Works pretty good! But what if I have a header? Can it be modified to go to the top when the header has been passed? – Cudos Jul 2 at 14:04
4  
"Don't support IE6" is easy to say (I say it often), but sometimes you just don't have the choice. – Crossbrowser Jul 2 at 14:06
1  
Yes, just ignore 15% - 20% of the site´s visitors, that seems like a solid business idea. – jeroen Jul 2 at 16:34
1  
@MatW: Well, he did state in the question that he needed IE6 support (as one of the few ones that do) and on different sites, ranging from embassy's and travel agencies to psychologists and wineries, I see 15% to 20% of IE6 use, with that number going up to 40% on local sites here in South America (where almost all windows versions are illegal...). Anyway, I just think your solution is fine, but the first paragraph is very wrong. – jeroen Jul 2 at 19:12
1  
We can probably all agree that IE6 isa nightmare for developers. The problem in this matter is that the customers demands that it works in IE6. IE7+ and all other browsers has nice solutions. – Cudos Jul 3 at 13:52
show 5 more comments
vote up 0 vote down

yes IE6 sucks. here's the hack...

_position: absolute;
_top: expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px');

that basically tells IE6 to keep it absolutely positioned in the top left even as it scrolls. this should go under the rest of your css for the element so it over-rides it in IE6.

here it is for your left bar...

#leftBar {
position:fixed;
top:0;
left:0;
width:200px;
_position:absolute;
_top:expression(0+((e=document.documentElement.scrollTop)?e:document.body.scrollTop)+'px');
}
link|flag
I forgot to mention im using the underscore hack for IE6 in that code. – mitchbryson Jul 2 at 13:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.