CSS div problem, header and footer image
Hey!
Im having a problem with my div style for my header div and my footer div.
These are the styles in my css:
.div.footer
{
background-color: #73BF1F;
width: 100%;
height: 35px;
position: absolute;
border:1px solid green;
top: 665px;
right: 0px;
left: 5px;
}
.div.header
{
background-image : url(../images/toolbar.jpg);
background-color: #FFE000;
background-repeat: repeat-y;
position: absolute;
border:1px solid green;
width : 100%;
height : 48px;
top : 0px;
left : 5px;
right :0px;
visibility: visible;
}
Does anyone know why it would show up in IE6 but not IE7?
thanks for any help
Dan