Forum Moderators: not2easy
And to decrease page loading time I separated it into three small images, deciding I could just use CSS and backgrounds to do it: the left background image, the middle "\" curve part image, and the right background image.
So I made a div for the right background, and within that a div is nested for the left background and the curve part.
It works amazingly well in IE6 and Opera; however in Netscape 7 the right background does not show up at all (just the #bannerleft stuff.) Here is the code that I am using
#banner {
width: 100%;
background: #FFF url("rightbg.gif") repeat-x;
}
#bannerleft {
float: left;
height: 35px;
background: #FFF url("leftbg.gif") repeat-x;
}
#bannerleft img {
margin: 0 0 0 230px;
}
<div id="banner">
<div id="bannerleft">
<img src="curveimage.gif" alt="" />
</div>
</div>
Am I doing something wrong? How can I make it display properly in Netscape 7?