Changing header fonts

Discussion in 'Andrina WordPress Theme' started by pupwild, Apr 23, 2013.

  1. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I want to be able to change all header fonts to a certain font. I like the way the writing is on full width and blog posts, I just want to be able to change the font of blog header posts and the header for pages.

    www.miakoo.com
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .main-content .gallery h1, .main-content .page-content h1.contact, h1.single-heading, .page-content h1.page_title, .page_title.fullwidth-heading{
    font-family:symbol;
    }
    .content-bar .post .post_title a{
    font-family:symbol;
    }
    Inplace of "symbol" put your font type.
     
  3. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    This looks great now thank you. I have two more issues though, it changes the font headers perfectly on all pages but the problem is that it doesn't change it on the main page, could you advise me on that? I posted a picture, how could I change all that font to quicksand font

    Also, on the blog page, it creates a title called blog page, how could i change the name of that?
     

    Attached Files:

  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .bottom-feature .bottom-feature-left h1 {
    font-family: symbol;
    }
    .bottom-feature .bottom-feature-right h1 {
    font-family: symbol;
    }
    .bottom-feature-left-inner h3 a {
    font-family: symbol;
    }
    Inplace of "symbol" put your font type.

    2.For your second issue

    Go to blog.php present in your theme directory and replace current code
    Code:
    Blog Page
    with

    Code:
    <?php the_title(); ?>
    Sending image for reference

    [​IMG]


    This will solve your issue.
     

Share This Page