• My website is called SteelersToday.com. I am trying to change the header color to gold/yellow (Pittsburgh Steelers gold, for football fans among you). I have already figured out how to change the background image, and will be doing that soon. However, I can’t change the main header font to gold. How do I do this?

    I am using the Magic Blue theme by BlogChemistry. The relevant parts of the Style CSS reads as follows:

    [too much code – moderated; use a pastebin service like http://wordpress.pastebin.com if absolutely necesarry]

    Which lines do I change to make the Title to my blog bright yellow instead of white? Also, I don’t know color code #’s, so if you could supply the exact # to insert, that would be appreciated.

    Thanks in advance for your help.

Viewing 1 replies (of 1 total)
  • find in your “style.css” on line 276 (Admin > design > theme editor > style.css)

    #header h3 a{
      font-weight:100;
      color: white;
      text-decoration: none;
    }

    replace with

    #header h3 a{
      font-weight:100;
      color: gold;
      text-decoration: none;
    }

    same goes for the “blog description” text (style.css line 283) just change the #header h2 color value from white to gold.

Viewing 1 replies (of 1 total)
  • The topic ‘How can I change header color? (CSS supplied)’ is closed to new replies.