You PM'ed me a link to the page. Your layout depends heavily upon absolute positioning. That's not the best approach. But I am not here to completely redesign your page. Making the following modifications to two of your style selectors seems to work out:
Code:
#Layer1 {
position:absolute;
table-layout: automatic
width:899px;
height:1200px;
z-index:1;
top: 8px;
left: 50%;
margin-left:-450px;
background-color: #FFFFFF;
}
and:
Code:
#header {
position:absolute;
width:898px;
height:115px;
z-index:3;
left: 50%;
top: 7px;
margin-left:-455px;
background-image:url(logo/2.jpg);
}
Oh, and I see that throws off vcadmuni, so:
Code:
#vcadmuni {
position:absolute;
border:1px solid #C0C0C0;
width:300px;
height:115px;
z-index:2;
left: 50%;
top: 508px;
margin-left:132px;
background-color: #FFFFFF;
background-image: url(chat1.jpg);
}
One of the problems with this sort of set up is that browsers may vary slightly in where they see things falling. Particularly IE. For that browser, conditional comments may be used to tweak the style.
Bookmarks