Changinf font titles

Discussion in 'ColorWay WordPress Theme' started by midtownmft, May 1, 2013.

  1. midtownmft

    midtownmft New Member

    Joined:
    Mar 2, 2013
    Messages:
    23
    Likes Received:
    0
    I'm trying to change the font for the headers and I put this code in teh css

    h1, h2, h3, h4, h5, h6{
    font-family: Arial;
    }

    but it didn't change the title fonts on the home page, or any where else. What am I missing?


    thanks!!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Firstly, 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{
    font-family: Arial;
    }
    This will solve your issue.
     
  3. midtownmft

    midtownmft New Member

    Joined:
    Mar 2, 2013
    Messages:
    23
    Likes Received:
    0
    I cant find the custom.js ... what template is that in? Is it in teh stylesheet?
     
  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