• Resolved mehdi84

    (@mehdi84)


    Hi guys,

    I have some trouble to change the background color of the sub menu on my blog. If you get a look to my website, under “A PROPOS”, the submenu background color is black and I have no idea about how to change it. I’d like to have a white background with a blue text. I tried every kind of color setting, with no success.

    Cheers,
    Mehdi

    • This topic was modified 6 years, 2 months ago by mehdi84.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Andre

    (@andre-jutras)

    Looks like we missed a setting for that one. However, you can add some custom CSS code to the Additional CSS tab in the theme customizer with this which adds a white background:

    #main-nav ul {
        background-color: #fff;
        border-bottom: 4px solid #fff;
    }

    Change the value of the background-color and add the same colour value to the border as well to what you want.

    For the submenu link to be blue; guessing it’s the same blue as your other links, add this as well:

    #main-nav .sub-menu a {
        color: #083383;
    }

    Hope that helps ??

    As a side note, to find a colour value that you want, go to one of the colour selectors in the customizer, choose a colour from the selector, copy the HEX colour value for your submenu background you want….or you can use this tool:

    HEX Colour

    Thread Starter mehdi84

    (@mehdi84)

    Your answer was super fast ! That works, thanks ! ??

    Andre

    (@andre-jutras)

    You are very welcome and glad to hear it worked ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Submenu background colors’ is closed to new replies.