• I’m trying to change the font color in the Main Menu navigation bar which means I’m also trying to change the text color when the mouse hovers over it as well. Any suggestions on where to look for this code in the Leaf theme.

Viewing 4 replies - 1 through 4 (of 4 total)
  • With Firebug for Firefox or Chrome you can easily see CSS properties on your page and then modify them in custom CSS area.

    Thread Starter vaneger2

    (@vaneger2)

    I did the following with Chrome and was able to locate the code. When I put it in the custom CSS though the text changed but the mouse hover color option did not work. This makes me think there may be other code that is effecting it. Any thoughts

    Code I entered
    .main-navigation li a {
    text-transform: uppercase;
    color: #111;
    .main-navigation li a:hover {
    color: ##FF8000;
    }

    Results on current site http://havenwoods.org.previewdns.com/

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Or that you have a syntax error:

    .main-navigation li a {
    text-transform: uppercase;
    color: #111;

    Close that style off.

    … and you don’t need to add text-transform: uppercase; because it’s by default.
    Rather you should add text-transform: none; because your menu texts are long and in some resolutions at least one menu item wraps.
    Alternatively you can reduce padding-left in .main-navigation li a

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Change Menu Title colors’ is closed to new replies.