• Hi,

    I have read many topics on this and although they were marked as resolved, their solutions didn’t help me. So I decided to create a topic of my own.

    I was able to change the red secondary color to blue but I want the black navigation as well as the black footer to be changed to a greyish (#8e8989) color. The solution I read was to add:

    .site-navigation {
    background-color: #8e8989;
    }

    I tried this with .site-navigation as well as #site-navigation, nothing seems to work. Keep in mind that I also want the footer color to be the same grey color. Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    Please add the below given CSS to
    (If you are using WordPress 4.7)
    Dashboard -> Apperance -> Customize -> Additional CSS
    (If you are using WordPress 4.6 or less)
    Dashboard -> Apperance -> Customize -> Theme Options -> General Options -> Custom CSS

    .header-wrapper #site-navigation {
        background: #8e8989;
      }
    .header-wrapper .menu li {
        background: #8e8989;
    }
    .footer-wrapper {
        background: #8e8989;
    }

    Hope it helps.
    Regards.

    Thread Starter ownyourhome

    (@ownyourhome)

    Thank you!

    It did help but I also have the home button enabled, how do I change the colour of that?

    Thank you so much btw

    Hello,

    Can you please provide us with your site URL so that we can monitor and fix your issue?

    Regards.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing site navigation color’ is closed to new replies.