• I would like to change the Color of my website Header area. The Theme is Newspapertime from Magazine3. After three days of waiting for their support to get back to me, they send me the code below but not exactly where to put the code in.
    My website is http://www.panafricantimes.com

    #header {
    background-color: red;
    }

    If the code is correct, I need to know exactly where in STYLE.CSS to put the code.
    Thanks in advance.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Phil

    (@owendevelopment)

    Open style.css.

    The part you’re looking for is not too far from the top, you’ll see:

    #header {
        border-bottom: 0 solid #EAEAEA;
        height: auto;
        padding-top: 5px;
        position: relative;
    }

    Just change it to:

    #header {
        border-bottom: 0 solid #EAEAEA;
        height: auto;
        padding-top: 5px;
        position: relative;
        background-color: red;
    }

    That should be it!

    Thread Starter orjense

    (@orjense)

    Hi Phill, thank you very much. I made the changes as you suggested, but that didn’t work. Any other ideas?
    Regards

    Phil

    (@owendevelopment)

    Your site looks like it’s cached through Cloudflare.

    You will need to clear the cache for the changes to update.

    Thread Starter orjense

    (@orjense)

    Phil, Thank so very much. Really appreciate it. Your suggestion worked superbly.

    Phil

    (@owendevelopment)

    No Problem, glad I could help.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Changing Header Color’ is closed to new replies.