Font-type

Discussion in 'Dzonia WordPress Theme' started by robertschoonhoven, Oct 22, 2012.

Thread Status:
Not open for further replies.
  1. robertschoonhoven

    robertschoonhoven New Member

    Joined:
    May 2, 2012
    Messages:
    6
    Likes Received:
    0
    How do I change the font-type for h1, h2, h3 etc.?
     
  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,.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:symbol;
    }
    Inplace of "symbol" put your font type.
     
  3. robertschoonhoven

    robertschoonhoven New Member

    Joined:
    May 2, 2012
    Messages:
    6
    Likes Received:
    0
    Got it! Thanks Gourav.
     
Thread Status:
Not open for further replies.

Share This Page