Font Figero

Discussion in 'Figero WordPress Theme' started by capitano, Feb 11, 2013.

  1. capitano

    capitano New Member

    Joined:
    Jan 10, 2013
    Messages:
    9
    Likes Received:
    0
    Sorry for my language .. I'm Italian ..
    is possible to change the font of the writing circled in red in the image?
    Thanks!
     

    Attached Files:

  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:
    //Font Replace
    Cufon.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');
    for the reference see the image given below
    [​IMG]
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    h1,h2,h3,h4,h5,h6,a{
    font-family:verdana!important;
    }
    p{
    font-family:verdana!important;
    }
    .slide .entry h2 {
    font-family: verdana;
    }
    .feature-index .feature-one h1 {
    font-family: verdana;
    }
    .sliderHolder2 h1 {
    font-family: verdana;
    }
    Inplace of "verdana" put your font type.
     

Share This Page