• Resolved little sister piggy

    (@little-sister-piggy)


    I have no control over header fonts at all it seems. I would like to make it MUCH larger, and in a different color, especially the title tag. How to do that?
    Also, title (which is red on home page) turns black when viewing a post. ???? on how that happened. I don’t think it started out that way.
    site is https://www.piggysisters.com

Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author Richie KS

    (@rkcorp)

    @bigger header title
    add this to theme option->custom css
    #siteinfo h1, #siteinfo div { font-size:40px; }
    #siteinfo p { color:#cc0000; }

    @h1 color in single post
    add this to theme option->custom css
    #custom h1.post-title { color:#cc0000 !important; }

    edit the hex color to your own.

    Thread Starter little sister piggy

    (@little-sister-piggy)

    Thanks tons!
    It worked … sort of.
    The title of the site is still showing black, … and I’d like to underline the site tag. How would I do that?

    https://www.piggysisters.com
    Patty

    Hey there Patty,

    To change the site title color please add the following CSS:

    #siteinfo a {
    color: #333;
    }

    Replace the color hex value to the color of your choice. As for the tag line underline add the following:

    p#site-description {
    text-decoration: underline;
    }

    This should add underline the site tag line.

    Hope this helps ??

    Cheers,
    Bojan

    Thread Starter little sister piggy

    (@little-sister-piggy)

    It worked! What would I add to make the site tag bold?

    Hey again Patty,

    You can do that by adding the following code:

    p#site-description {
    font-weight: bold;
    }

    This should make the site tag bold.

    Have a nice weekend ??

    Cheers,
    Bojan

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change size and color of header font?’ is closed to new replies.