on the admin' css I try to personalize the colors...
Under firefox, ll is ok, but under IE, some color have a bad behaviour...
See it:
You see? the color doesn't appear on the whole ul tag...
And if I go to ressources, or administration, it looks bad too...
but under FF, all is ok...
here is my css code modified (only for colors)
- Code: Select all
/**
* styles for the 'manage' page and similar.
*/
#content .menuTop
{
list-style-type : none;
padding-left: 45px;
padding-right: 45px;
margin: 0px;
}
#content .menuTop ul
{
padding: 0px;
margin: 0px;
background : #c8d9f2;
}
#content .menuTop .Level_1
{
font-family : trebuchet ms, tahoma, sans-serif;
font-size : 1.0em;
font-weight : bold;
letter-spacing : 0.08em;
border-bottom : 1px solid #DEDEDE;
padding-top : 10px;
text-align : left;
}
#content .menuTop .Level_0
{
padding-left: 10px;
font-weight : normal;
background : #c8d9f2;
}
#content .menuTop .Level_0 a
{
color : #888888;
text-decoration : none;
}
#content .menuTop .Level_0 a:hover
{
color : #5583BE;
text-decoration : none;
}
Thank you