Changing homepage and other pages heading font

Discussion in 'Gommero WordPress Theme' started by blackslatestudios, Feb 2, 2013.

  1. blackslatestudios

    blackslatestudios New Member

    Joined:
    Jan 19, 2013
    Messages:
    9
    Likes Received:
    0
    I wish to change the homepage heading fonts, and also change the heading fonts for each other page of my website.

    I installed the Google font widget, which is successful in changing font for paragraphs, however it does not change any heading fonts.

    How does one go about changing the font of the themes' homepage and paragraph headings?

    P.S. The specific font I wish to change the headings to is Google font "Lobster".
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Cufon Replacement in heading
    jQuery(document).ready(function() {
        //Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');
        Cufon.replace('h1, h2, h3, h4, h5, h6,#menu li a');
    });
    [​IMG]

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    h1,h2,h3,h4,h5,h6{
    font-family:symbol;
    }
    Inplace of "symbol" put your font type.
     

Share This Page