• Please help me how to change the theme colour not to be white? I don’t mean the background of the whole theme, just the place for the content of the page.
    Is there a possibility for changing the colour of the top menu?

Viewing 2 replies - 1 through 2 (of 2 total)
  • if you want to change the color of the navigation menu simply add your own custom css.

    .main-navigation {
    background-color: red;
    }

    if you want to do the content area, you’d do the same thing, but target the content class, which in this case is content-area.

    .content-area {
    background-color: red;
    }

    FYI: Inspect element is your friend 😛

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change the theme colour and the top menu background colour’ is closed to new replies.