visitor tabs font sizing

Diana

Active member
Where can I locate the font size for the visitor tabs.

The fonts in the inbox and alerts are too large. How can I minimize them?
 
Insert in extra.css template though you may be able to go through the style properties
Code:
.navTabs .visitorTabs {
    font-size: yoursizeinpx;
}
 
Using Chrome's element inspector I came up with this CSS:

Admin CP -> Appearance -> Templates -> EXTRA.css

Add this code:

Code:
.navPopup h3
{
	font-size: 16px !important;
}

.navPopup .listItemText .muted
{
	font-size: 16px !important;
}

The result (big text):

Screen shot 2012-08-08 at 9.02.01 PM.webp Screen shot 2012-08-08 at 9.02.16 PM.webp
 
Ack, it's still not quite right. It wasn't just the font size that was too large, it's also the background.

This is the size (on the landing page).

size2.webp

This is the size it should be (as it appears on the forum).


size1.webp
 
Top Bottom