• Resolved wearebrainerd

    (@wearebrainerd)


    I am using the Edin theme for my website and I’d like to change the hover colour (currently blue) to be non-existent on the child pages from my main menu. My site is wearebrainerd.org.

    Is there CSS code to change this?

Viewing 1 replies (of 1 total)
  • Hi there,

    It sounds like you want to make the background color of your drop down menus white.

    If that’s what you want to do, just add this to your site in the Appearance > Customize > Additional CSS area:

    /* Set Drop Down Menu Color */
    @media screen and (min-width: 1020px) {
        .navigation-classic .primary-navigation ul ul li {
            background: #ffffff;
        }
        .navigation-classic .primary-navigation ul ul li:last-of-type {
            border-color: #ffffff;
        }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Change Hover colour on Menu’ is closed to new replies.