Changing Colorway Font

Discussion in 'Infoway WordPress Theme' started by joblak1, May 24, 2014.

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

    joblak1 Guest

    Joined:
    May 15, 2014
    Messages:
    20
    Likes Received:
    0
    Hello, I have read through some of the posts on changing theme fonts, but the tips given do not seem to work for me-or I am doing it incorrectly. I want to change the entire theme font (menu bars, navigation, post text)
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    h1,h2,h3,h4,h5,h6,a,span,ul,li,div,p,input{
    font-family: symbol ! important;
    }
     
    In place of "symbol " you can put your font.
    This will solve your issue.
     
  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:
    //Cufon replacement
    Cufon.replace('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!important;
    }
    
    Inplace of "symbol" put your font type.


    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  4. joblak1

    joblak1 Guest

    Joined:
    May 15, 2014
    Messages:
    20
    Likes Received:
    0
    Gourav-

    The code you say I should remove it not present in the JS file at all.
     
  5. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Leave js code. Just Paste css code in
    Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    h1,h2,h3,h4,h5,h6,a,span,ul,li,div,p,input{
    font-family: symbol ! important;
    }
    Inplace of "symbol" put your font type.

    Thanks & Regards
    Nitesh Raghuwanshi
     
  6. joblak1

    joblak1 Guest

    Joined:
    May 15, 2014
    Messages:
    20
    Likes Received:
    0
    Nitesh, I tried this but the theme font did not change. Also, I want to write my posts using a different font and I don't see an option to change my fonts.
     
  7. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
  8. joblak1

    joblak1 Guest

    Joined:
    May 15, 2014
    Messages:
    20
    Likes Received:
    0
    Ok, I will do that today
     
Thread Status:
Not open for further replies.

Share This Page