Font h1, h2, h3, etc.

Discussion in 'Dzonia WordPress Theme' started by fotofama, Nov 2, 2013.

  1. fotofama

    fotofama New Member

    Joined:
    Jul 27, 2012
    Messages:
    5
    Likes Received:
    0
    How can i change the font for h1, h2 ,h3 etc.?
    It's now an 'cufon' font made of pixels…?
    I want to chance it in a 'normal' font.

    Thanks.
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    To remove cufon
    Go to the
    Theme directory > js > custom.js
    and remove code given below from there.

    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 });
    }); 
    After that
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1, h2 ,h3{
    font-family:your font family;
    }
     

Share This Page