Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Strange display bug in IE Re: Strange display bug in IE

#60287
olivernn
Member

Just noticed that I haven’t posted the css for the tabs….

Code:
#tabs{
list-style:none;
padding:8px;
padding-bottom:10px;
background:url(/images/tab_background.png);
clear:both;
}

#tabs li{
display:inline;
margin-right:20px;
padding:8px;
}

#tabs li.active{
border-bottom:1px solid #AAAAAA;
}

#tabs li.active a{
color:#FF2782;
font-size:1em;
font-weight:700;
}

#tabs li a{
color:#AAAAAA;
font-size:0.8em;
text-decoration:none;
margin-bottom:10px;
padding-top:20px;
}

#tabs li a:hover{
color:#2093A8;
}

#menu{
padding:0px;
}