• Hi how do I change the color of the menu and footer? I’ve tried

    #access {
    background: white;
    }

    For menu and

    footer#footer {
    background: #000000;
    }

    for footer and neither worked.

    This is for https://www.noevi-dents.com I have a few of the pages hidden let me know if you need to see them all.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • For the footer, in your theme’s style.css, find this:

    .site-footer::before

    Change the background to:

    background:rgba(255,255,255, 0.875);

    You will also need to find .site-footer, and .site-footer .site-info a. and change color: #fcfbf9; to a darker color as #fcfbf9 is close enough to the same color that it won’t be able to be read.

    For the menu, find:

    .main-navigation

    Change the background to #fff.

    Similarly, you’ll also want to change the text color in two places.

    .main-navigation .current-menu-item > a has a color of #e9d5c0, which is a very light tan color.

    .main-navigation a color is the same #fcfbf9 as the footer, so you may want to use the same color as you did down there.

    Thread Starter kmcgowanks

    (@kmcgowanks)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Pique Menu and Footer color’ is closed to new replies.