Forum Moderators: not2easy
I have since corrected the problem by just reincluding the background position tags back within each page.
I was wondering if this is the right way to do it?
Secondly NN 4.7 renders the background in a different location to IE on both mac and PC as well as Mozilla and Opera. Is this just the way it is or can I correct it?
From: HTML
<body background="indeximages/background.gif" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0">
From: CSS
html BODY {
scrollbar-arrow-color: #FFFFFF;
scrollbar-track-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-face-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-3dlight-color: #FFFFFF;
}
The original CSS file that was cusing the problem is below:
body {
background-color: #ffffff;
background-image: url(../commonimages/background_content.gif);
background-position: "0% 0%";
background-repeat:no-repeat;
border:0px;
padding:0px;
color:#ffffff;
margin-top:0px;
margin-left:0px;
margin-right:0px;
margin-bottom:0px;
scrollbar-arrow-color: #FFFFFF;
scrollbar-track-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-face-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-darkshadow-color: #FFFFFF;
scrollbar-3dlight-color: #FFFFFF;
}
@media all {
body {
background-image: url(../commonimages/background_content.gif);
}
}
You might want to change the background-color attribute if you do this.