Changing font of Heading Home Page Text

Discussion in 'Dzonia WordPress Theme' started by brunno oliveira, Jan 28, 2013.

  1. brunno oliveira

    brunno oliveira New Member

    Joined:
    Nov 22, 2012
    Messages:
    1
    Likes Received:
    0
    How do I change the font of Heading Home Page Text from home?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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,.content .post .date li', { fontFamily: 'MankSans-Medium', hover: true });
    });
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1,h2,h3,h4,h5,h6,a{
    font-family:MankSans-Medium!important;
    }
    p{
    font-family:MankSans-Medium!important;
    }
    .home_content .home_text center h1 {
    font-family:MankSans-Medium!important;
    }
    Inplace of "MankSans-Medium" put your font type.

    This will solve your issue.

    Thanks
     

Share This Page