Anybody got this to work with IE6?
I've added the below to the CSS but still doesn't work on IE6.
Quote:
Originally Posted by gr8whtd0pe
Probably because IE does not listen to any HTML standards.
add:
Code:
/* <<<this part is for IE6--- START >>> */
* html,* html body {
background-image:url(about:blank);
background-attachment:fixed;
}
/*<<< this part is for IE6--- END>>> */
and
Code:
/* <<<this part is for IE6 --- START>>> */
* html #bar_bottom {
position: fixed;
bottom: 0px;
left: 80px;
right: 80px;
height: 30px;
background:#f3f3f3 url(../imgimg/bar_bottom_bg.png) 0 0 repeat-x;
border-left:1px solid #b5b5b5;
border-right:1px solid #b5b5b5;
}
/*<<< this part is for IE6 --- END >>> */
To your css per https://vborg.vbsupport.ru/showpost....&postcount=118
|