Support » Theme: Book Lite » Change to menu header

  • Hello, I’d like to change my menu header on the book lite theme from the default setting of charcoal black to white. Can you help me?

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Are you using a Child Theme, or a custom css plugin?

    If so, you can change the menu colour by using the css class .main-navigation

    If you’d just like it to be a solid white, you could just use ‘white’ or ‘#fff’, or if you’d like to keep the semi-transparency, you could use ‘rbga(255,255,255,0.9)’

    OR, since the theme actually just uses an image for this, you could replace the image (it’s easier to use css since it’s just a plain colour though)

    Code:

    .main-navigation {
        background: rgba(255,255,255,0.9);
    }

    Hope that helps!

    Thread Starter zagroot

    (@zagroot)

    Hi, I’m new to wordpress. I have not worked with child themes. But your code did the trick in the css custom design. Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change to menu header’ is closed to new replies.