CSS for Poloray fonts

Discussion in 'Poloray WordPress Theme' started by lbrudycook, Apr 3, 2013.

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

    lbrudycook Guest

    Joined:
    Oct 3, 2012
    Messages:
    24
    Likes Received:
    1
    Hi there, I would like to change the fonts for the Top Feature Heading, Top Feature Description and Home Page tagline on the Poloray Theme. Is it possible to have CSS for each of these, identified separately, so that I can test the right fonts for each portion?

    Thank you so much for your help.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Go to custom.js file (js > custom.js) present in your theme directory and remove the code given below

    Code:
    //Cufon replacement
    Cufon.replace('h1',{hover: true})('h2',{hover: true})('h3',{hover: true})('h4',{hover: true})('h5',{hover: true})('h6',{hover: true})('.contentbtn')('.content_info')('.readmore',{hover: true})('.submit',{hover: true});
    
    Now, paste this code in Custom CSS
    (Appearance > Theme Option > Styling Option > Custom CSS)
    1. To change the fonts for the Top Feature Heading.
    Code:
    .slider_info h1 {
    font-family: symbol;
    }
    2. To change the fonts for the Top Feature Description.
    Code:
    .slider_info p {
    font-family: symbol;
    }


    3. To change the fonts for the Home Page tagline.

    Code:
    .content_info h1 {
    font-family: symbol;
    }
    Inplace of "symbol" put your font type.
    This will solve your issue.
     
  3. lbrudycook

    lbrudycook Guest

    Joined:
    Oct 3, 2012
    Messages:
    24
    Likes Received:
    1
    Thank you Piyush. Where exactly do I find the custom.js file? I am familiar with pasting code into the Custom CSS, so that is not a problem.

    Thanks again for your help, and for responding so quickly to my question.

     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    You will not get theme directory in your dashboard.
    You can edit custom.js file through FTP.
    Open your Theme directory (through FTP) > js
    Download custom.js file from there, Edit it, Then again upload it.
     
  5. lbrudycook

    lbrudycook Guest

    Joined:
    Oct 3, 2012
    Messages:
    24
    Likes Received:
    1
    Thanks so much for your help!
     
Thread Status:
Not open for further replies.

Share This Page