Index page loading glitch

liunx

Guest
<!-- m --><a class="postlink" href="http://www.swedishculturalcenter.org">http://www.swedishculturalcenter.org</a><!-- m -->
Upon first load, it's messed up, hit refresh and it's fine. Here's the main css. I can display rest if needed. Please help!


body {
font-family: sans, arial, verdana;
margin:0px;
color: #fff;
background: #0033ff;
}
#horiz {

margin-left: 0px;
margin-top: 0px;
background: #ffff00;
z-index: 1;
text-indent: 50%;
padding-top: 10px;
}

#vert {
position: absolute;
left: 30px;
top: 0px;
height:;
width: 6em;
background-color: #ffff00;

}


#content {
position: absolute;
left: 160px;
width: ;
border: 0px solid white;
padding-left: 20px;
padding-right: 50px;

}
.logo {
margin: 10px 0 0 170px;

}It's related to all the absolute positioning you're using. You're best off using 'position:relative' and floats and moving things around with margins and padding.Thanks, that seemed to fix it. I appreciate your quick response.
 
Back
Top