• Hi folks,

    I’m pulling my hair out a little bit with this one. I have a site at https://codeiseverything.co.uk/david/ it’s using the Gameplan Theme. I cannot for the life of me find where to change the black background or the black header in the CSS. I’ve tried using Firebig, i’ve changed the colour values on both style.css and on the dark.css but it’s just not reflecting the changes ??

    Can anyone help point me to where I should be changing these values?

    Many thanks in anticipation! Mary

Viewing 1 replies (of 1 total)
  • You will need to change 4-5 things

    /* the main body background */
    .background-color {
      background: mycolor!important;
    }
    /* the section just above the body */
    .body-top-color {
      background: mycolor!important;
    }
    /* the header */
    .nav-bottom {
      background: mycolor!important;
    }
    /* hide the border from header */
    body.dark #navigation .nav-bottom {
      border-color: none;
    }
    /* change the footer color */
    body.dark #copyright {
      background-color: mycolor;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘*cannot* change the background & header colour’ is closed to new replies.