• Hi. How can I change the color of my header? See honestmom.com – I’d like to change the color of HONEST MOM at the top – H1, correct? I only know a few very basic tricks (self-taught from fooling around with code on my old blog).

    I tried a couple of methods to change it in the stylesheet, including adding “font-color: #1cb02a;” (without the quotes) in the code below after the font-weight:

    h1 {
    font-family: ‘LeagueGothic’, ‘Arial Narrow’, Impact, sans-serif;
    font-size: 48px;
    font-weight: normal;
    font-color: #1cb02a;
    line-height: 50px;
    margin: 0 0 30px;
    padding: 5px 0 0;
    text-transform: uppercase;
    }

    This didn’t work. Advice? Thanks!

    http://wordpress.org/extend/themes/blaskan/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Aigars Silkalns

    (@perper)

    Just use color instead of font-color.

    h1 {
    color: #1cb02a;
    }

    Hi Per,

    I would also like to change the font color of the Post and Page titles on your lovely theme. I’m quite a newbie, but I’ve figured out how to create a child theme of Blaskan, and I know I need to make this change within my child theme’s style.css file. But when I try simply to add what you wrote above, nothing happens.

    Right now my Child Theme style.css file just has the import code followed by the child theme signifier and nothing else. What exactly do I write below to change the font color of the Posts and Pages titles?

    Thank you for any help you can provide this eager newbie.

    Anna

    Hi, I was able to change the color of the site title by adding this to the child theme style.css

    #site-name a {
    color: #1cb02a;
    text-decoration: none;
    text-transform: uppercase;
    }

    Thread Starter honestmom

    (@honestmom)

    Thanks, all!

    nikbuttigieg

    (@nikbuttigieg)

    Hi Per,

    Thank you for the great theme. I am trying to center my page header, nav menu and image to the center but to no avail.

    nikbuttigieg.com

    Can you please tell me how to do this?

    Cheers.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Theme: Blaskan] Change color of header font?’ is closed to new replies.