Don't want to use CUFON fonts.

Discussion in 'RoadFighter WordPress Theme' started by elames3, Oct 26, 2013.

  1. elames3

    elames3 Member

    Joined:
    Jan 16, 2012
    Messages:
    89
    Likes Received:
    0
    How do I switch to using a "regular" font rather than the cufon fonts. I don't like their look. Not clear. Or is there a way to use a better looking cufon?
    Thank you
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

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

    Code:
    //cufone
    Cufon.replace({
        hover: true
    })('.add h2')('.reply',{
        hover:true
    })('h1')('h2')('h3')('h4')('h5')('h6')('.add') ;
    
    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!important;
    }
    p{
    font-family:symbol!important;
    }
    .home-content .page_info h1 {
    line-height: 45px;
    font-family: symbol;
    }
    
    Inplace of "symbol" put your font type.
    This will solve your issue.
     

Share This Page