Admin Menu Font Size


Author Message
diffstrat

Posted: 9/30/2009
Quote message 

When I use an Artisteer theme the font of the Admin Menu module ends up begin 13px. I'd like it to be smaller. The README.txt file of Admin Menu says you can add the following line to the themes css to change the font size.
<br/>
<br/>
body #admin-menu { font-size: 10px; }
<br/>
<br/>
When that text is added, it doesn't change anything. I've determined that it's the following css in the that is governing the font size of the menu.
<br/>
<br/>
ol, ul
{
color: #ADADAD;
margin:1em 0 1em 2em;
padding:0;
font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
font-size: 13px;
}
<br/>
<br/>
I'm not quite sure how to alter it appropriately so it only affects the admin menu and not anything else.
<br/>
<br/>
Any pointers?
 
diffstrat

Posted: 9/30/2009
Quote message 

Sorry for the bad code above. Here it is again.

When I use an Artisteer theme the font of the Admin Menu module ends up begin 13px. I'd like it to be smaller. The README.txt file of Admin Menu says you can add the following line to the themes css to change the font size.

body #admin-menu { font-size: 10px; }

When that text is added, it doesn't change anything. I've determined that it's the following css in the that is governing the font size of the menu.

ol, ul
{
color: #ADADAD;
margin:1em 0 1em 2em;
padding:0;
font-family: Verdana, Geneva, Arial, Helvetica, Sans-Serif;
font-size: 13px;
}

I'm not quite sure how to alter it appropriately so it only affects the admin menu and not anything else.

Any pointers?
 
Cliff

Posted: 9/13/2010
Quote message 

I just did this and it worked:

body #admin-menu ol, body #admin-menu ul { font-size: 10px !important; }