As I can't apply the stylesheet and view in MSIE, I don't know if the following will work.
What you may like to try is this...
Find the following in your stylesheet:
Code:
/*wrappers - page or section containers*/
#mainWrapper {
background-color: #ffffff;
text-align: left;
width: 776px;
vertical-align: top;
}
#headerWrapper, #contentMainWrapper, #logoWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #mainWrapper, #popupAdditionalImage, #popupImage {
margin: 0em;
padding: 0em;
}
#headerWrapper {
background-image: url('http://i412.photobucket.com/albums/pp209/smooshboosh/cutebg3.png');
background-position:center center;
}
Replace it with this:
Code:
/*wrappers - page or section containers*/
#mainWrapper {
margin: 0em;
padding: 0em;
text-align: left;
width: 776px;
vertical-align: top;
}
#contentMainWrapper, #cartBoxListWrapper, #ezPageBoxList, #cartBoxListWrapper ul, #ezPageBoxList ul, #popupAdditionalImage, #popupImage {
background-color: #ffffff;
margin: 0em;
padding: 0em;
}
#logoWrapper, {
margin: 0em;
padding: 0em;
}
#headerWrapper {
margin: 0em;
padding: 0em;
background: transparent;
background-image: url('http://i412.photobucket.com/albums/pp209/smooshboosh/cutebg3.png');
background-position:center center;
}
Then view in MSIE.
If it does not work, come back to this post and copy/paste into your stylesheet your original bit as shown above.