Enabling lower case in left nav
I want to use lower case letters in the left navigation of our website astdatlanta.org
When I create a new page with a title such as SIGs-GIGs, it shows as SIGS-GIGS.
I tried working with the colors and fonts but they have no effect.
I am not sure which CSS is controlling this area.
-
Evgeny Zaritovskiy commented
Part of your theme CSS stylesheet Theme.css (line 183) is the rule
#idNavigationContainer ul.menuLevel1 li
{
...
text-transform: uppercase;
...
}This rule forces capitalization. Just override it with { text-transform: none } and it'll do the job.