Roadfighter theme - change headline text

Discussion in 'ColorWay WordPress Theme' started by johnwebtrends, Sep 6, 2013.

  1. johnwebtrends

    johnwebtrends Member

    Joined:
    Sep 4, 2013
    Messages:
    33
    Likes Received:
    0
    I am trying to change the headline text as it is very fuzzy - can you provide the code that will change the headline text to arial?



     
  2. Piyush

    Piyush Support Staff

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

    I think you want to change the font of Home page main heading text.
    For this go to js > custom.js present in your theme directory and remove the code given below


    Code:
    //Cufon replacement
    Cufon.replace('h1')('h1:hover')('h2')('h3')('h4')('h5')('h6');

    Now,

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


    Code:
    .home-content .page_info h1 {
    font-family: symbol;
    line-height: 55px;
    }

    In place of "symbol" you can put your font and you can adjust the value of "line-height" as per your requirement.
    This will solve your issue.
     
  3. johnwebtrends

    johnwebtrends Member

    Joined:
    Sep 4, 2013
    Messages:
    33
    Likes Received:
    0
    Thanks - this works
     
  4. johnwebtrends

    johnwebtrends Member

    Joined:
    Sep 4, 2013
    Messages:
    33
    Likes Received:
    0
    Could you send the code that all text across all the site is calibi
     
  5. Piyush

    Piyush Support Staff

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

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

    Code:
     p , ul , li , a , span , body{
    font-family:symbol!important;
    }
    In place of "symbol" you can put your font.
    This will solve your issue.
     

Share This Page