Viewing 5 replies - 1 through 5 (of 5 total)
  • Anonymous User 16453565

    (@anonymized-16453565)

    Hello, @jomul04

    If you want to change the background color of the menu then add below css code into Appearance → Customize → Additional CSS.

    .main-navigation {
      background-color: #000; /* Add your desire color. */
    }

    And if you want to change the color of menu link then add below css code into Appearance → Customize → Additional CSS.

    .main-navigation a {
      color: #000; /* Add your desire color. */
    }

    Let me know if that does it.
    Thank you.

    Thread Starter jomul04

    (@jomul04)

    Thank you @snehalb890 that has worked. Can you please advise how I can change the colour of the drop down menu too? Thanks

    Thread Starter jomul04

    (@jomul04)

    @snehalb890 I would also like to change the link colour if possible?

    Anonymous User 16453565

    (@anonymized-16453565)

    Hello, @jomul04

    To change the menu link color add below css code

    .main-navigation a {
      color: #f37a5b; /* Add your desire color. */
    }

    To change the dropdown menu background color add below css code

    .main-navigation ul ul {
      background-color: #f37a5b !important;
    }

    hamburger menu background color for mobile view.

    button.menu-toggle {
        background-color: #f37a5b;
    }

    Thank You.

    Thread Starter jomul04

    (@jomul04)

    Thank you @snehalb890 this worked perfectly

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Menu Colour’ is closed to new replies.