• Hello,

    Trying to change the theme color from black to white on https://www.lavenderlashes.net/blog

    Looking to change header, mission content and footer.

    I can’t figure out the CSS to do so. I’ve read through a bunch of forums but none of their codes work. I’m wondering if there is something specific to the free Charity Review theme that I need to include.

    Please help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi there,

    The top section background color can be accessed and changed via a class I will list in a moment. One way to make a change like this is to do a find and replace for the specific color value you’re trying to find in your css, and replacing it with the class you want. Just remember the general caveat about using a child theme.

    To get you started, the class that includes the background color of the top area is listed below:

    #site-navigation {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background: #272e37;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }

    Thread Starter dylanpilon

    (@dylanpilon)

    Hello dbking,

    That did work. Do you know the classes for the other two sections?

    Also, I’ll need to change the font color because all my text is white. How do I change that?

    Thank you so much for the help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS to change theme color’ is closed to new replies.