Forum Moderators: not2easy
Here is a look at the HTML:
<!-- Main Content Header -->
<div id="main_content_hdr"></div>
<!-- Main Content Container -->
<div id="main_content">
<h4><font color="#697A99">The Company</font></h4>
</div>
<!-- Main Content Footer -->
<div id="main_content_ftr"></div>
And here is the css code for those 3 divs:
#main_content_hdr {
position: relative;
z-index: 2;
width: 532px;
height: 29px;
margin: 0px;
padding: 0px;
background-image: url("../images/ed_layout/main_content_hdr.gif");
}
#main_content {
position: relative;
z-index: 1;
width: 532px;
margin: 0px;
padding: 0px;
background-image: url("../images/ed_layout/main_content_bg.gif");
top: -1px;
}
#main_content_ftr{
position: relative;
z-index: 2;
width: 532px;
height: 26px;
margin-top: -1px;
padding: 0px;
background-image: url ("../images/ed_layout/main_content_ftr.gif");
background-repeat:no-repeat;
_top: -4px;/* positioning for IE */
}
Any Ideas? I am new to css as well so that might just be the problem ;)