for resolving the fixed possition issue with IE6 could use this code in CSS instead the original one from the author ( i don't know whether i am allowed to do this or not , i just want 2 help ) :
Code:
/* <<<this part is for IE6--- START >>> */
* html,* html body {
background-image:url(about:blank);
background-attachment:fixed;
}
/*<<< this part is for IE6--- END>>> */
#bar_bottom {
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
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 --- START>>> */
* html #bar_bottom {
position:absolute;
bottom:auto;
top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight));
width: 100%;
left: 0px;
right: 0px;
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 >>> */
.bar_float {float:right;padding:7px 5px 0 5px;border-right:1px solid #b5b5b5;}
.bar_float a{padding:2px;}
.bar_float a:hover{padding:2px;background-color:#fff;text-decoration:none;}
.bar_float1 {float:right;padding:7px 5px 0 5px;height:25px;}
.bar_float1 a{text-decoration:none;color:#749474;font-size:11px;}
.bar_float1 a:hover{font-size:11px;color:#000;text-decoration:none;}
.bar_float2 {float:right;padding:7px 5px 0 5px;border-left:1px solid #b5b5b5;height:25px;}
.bar_float2 a{padding:2px;color:#749474;font-size:10px;cursor:pointer;cursor:hand;}
.bar_float2 a:hover{padding:2px;font-size:10px;color:#000;text-decoration:none;}
.bar_contents {padding-top:6px;text-align:center;}
HAVE 2 MENTION I MODIFIED THE CODES TO WIDTH=100% FOR MY OWN USER (WIDTH NO LEFT AND RIGHT MARGIN ) IF U DONT WANT THEM SHOULD CHANGE BACK THESE VALUES TO 80 AS PROMTED IN ORIGINAL ONE :
Code:
left: 0px;
right: 0px;
CHANGE BAKC TO :
Code:
left: 80px;
right: 80px;