Fonts

Discussion in 'Cloriato WordPress Theme' started by bridgie, Jul 15, 2013.

  1. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    How do I change the featured fonts? H1H2H3H4H5H6 etc

    Can someone please help?
     
  2. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    CloriatoTheme.jpg
     

    Attached Files:

  3. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Font replace
    Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');
    Check link for reference

    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/


    Now,

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

    Code:
    h1, h2, h3, h4, h5, h6{
    font-family:Enter your font type;
    }
    This will solve your issue.
     
  4. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    Thank you, that worked.
    How do I remove the bold style from all the headings?
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

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

    Code:
    h1, h2, h3, h4, h5, h6{
    font-weight:lighter;
    }
     

Share This Page