OK IN EVERY OTHER BROWSER IT LOOKS FINE. IE6 IT SCREWS UP. THE BACKGROUND IMAGE IS NOT EXPANDED ALL THE WAY TO THE RIGHT OR THERE IS ANOTHER LAYER ON TOP WHITING A PORTION OUT. PERSONALLY IN THINK IT IS THE PREVIOUS.
THX JASON
In default.css, Change:

The problem is IE does not understand transparent PNG's.
To:body {
margin: 0px;
padding: 0px;
behavior: url('catalog/javascript/png/iepngfix.htc');
background: url('../image/background.png') top repeat-x;
background-repeat: repeat-x;
/*background:#4d4d4d;*/
}
Change:body {
margin: 0px;
padding: 0px;
background: url('../image/background.png') top repeat-x;
background-repeat: repeat-x;
/*background:#4d4d4d;*/
}
To:#header .a {
background: url('../image/logo.png') no-repeat;
behavior: url('catalog/javascript/png/iepngfix.htc');
width: 189px;
height: 80px;
float: left;
position: absolute;
top: 10px;
left: -15px;
}
See if that helps#header .a {
background: url('../image/logo.png') no-repeat;
background-color: transparent;
width: 189px;
height: 80px;
float: left;
position: absolute;
top: 10px;
left: -15px;
}

The problem is IE does not understand transparent PNG's.
Who is online
Users browsing this forum: No registered users and 4 guests