Changing Figero fonts

Discussion in 'Figero WordPress Theme' started by rostin, Nov 23, 2012.

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

    rostin Member

    Joined:
    Nov 20, 2012
    Messages:
    88
    Likes Received:
    2
    I would like to change all the fonts in Figero theme to "Tahoma". Is there a universal code to do this?

    Thanks.
     
  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:
    //Font Replace
    Cufon.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');
     
    

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


    Code:
    h1,h2,h3,h4,h5,h6,a,p{
    font-family:symbol;
    }
    

    Inplace of "symbol" put your font type.
     
  3. rostin

    rostin Member

    Joined:
    Nov 20, 2012
    Messages:
    88
    Likes Received:
    2
    Hi Gourav,
    The code you provided changes all the fonts except the font in the menu (in header).
    Any solution for that?

    Thanks.
     
  4. rostin

    rostin Member

    Joined:
    Nov 20, 2012
    Messages:
    88
    Likes Received:
    2
    I added this code to styling options and it fixed the issue.
    #menu li a {
    font-family: tahoma;
    }

    Thanks
     
Thread Status:
Not open for further replies.

Share This Page