Change font in Slider text box

Discussion in 'ColorWay WordPress Theme' started by scarn8881, May 13, 2013.

  1. scarn8881

    scarn8881 Guest

    Joined:
    Jan 15, 2013
    Messages:
    41
    Likes Received:
    0
    How do I change the font in the slider text box to
    Font Family: Times New Roman;
    Font- Style: italic;
     
  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:
    //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:
    .slide .slide-content.entry h2.title {
    font-family: Times New Roman;
    font-style: italic;
    }
    .slides_control .slide-content p {
    font-family: Times New Roman;
    font-style: italic;
    }
    This will solve your issue.
     
  3. scarn8881

    scarn8881 Guest

    Joined:
    Jan 15, 2013
    Messages:
    41
    Likes Received:
    0
    Hi Piyush,

    I cannot find js > custom.js present in your theme directory or the code to remove . Please advise. Thank you.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    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.
     

Share This Page