Reply To: Changing font color of menu item and submenu item

Homepage Community Forums Epik Theme Support Changing font color of menu item and submenu item Reply To: Changing font color of menu item and submenu item

#14337
Genghis7777
Customer

    Hi Wes

    Thanks for getting back to me. Thanks, that worked for correcting the colors for the main menu items. Much appreciated.

    I tried to do something similar for the submenu items and changed the code to look like this:

    .site-header .genesis-nav-menu a {
    color: #fff;
    }

    .site-header .genesis-nav-menu .current-menu-item > a, {
    color: #fff;
    }

    .site-header .genesis-nav-menu a:hover {
    color: #aaa;
    }

    .site-header .genesis-nav-menu .sub-menu .current-menu-item a {
    color: #fff;
    }

    .site-header .genesis-nav-menu .sub-menu .current-menu-item > a {
    color: #fff;
    }

    .site-header .genesis-nav-menu .sub-menu .current-menu-item a:hover {
    color: #aaa;
    }

    but that didn’t work. The submenu items linked to anchors seem permanently gray. The submenu items linked to other pages behave correctly. Any thoughts? Thanks in advance.