Quote:
Originally Posted by TNCclubman
This works in FIREFOX, but not in Internet Explorer.
Any ideas?
(Im talking about getting it to work on an html page with the code greatwhitedope gave me)
|
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