Change font to home page intro

Discussion in 'ColorWay WordPress Theme' started by valilly, Dec 5, 2012.

  1. valilly

    valilly New Member

    Joined:
    Nov 5, 2012
    Messages:
    6
    Likes Received:
    0
    Hello everyone, I don't know how to change the font of '"Home page intro", I would change it to "Harrington". Can anyone help me? Thank you!
    My site is www.lacortedilucina.it
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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:
    .content-wrapper .content-info h1{
    font-family:Harrington;
    }

    This will solve your issue.
     
  3. valilly

    valilly New Member

    Joined:
    Nov 5, 2012
    Messages:
    6
    Likes Received:
    0
    Thank you, but I'm not very handy with the computer language ... For "Js" you mean the editor colorway? I can not find the code Cufon replacement ... Where is located?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    In downloaded theme, You will get zip file, Extract it, There you will get theme directory > Js > custom.js.
     
  5. valilly

    valilly New Member

    Joined:
    Nov 5, 2012
    Messages:
    6
    Likes Received:
    0
    I just did it on my computer, but how to load it on my site?

    thanks
     
  6. valilly

    valilly New Member

    Joined:
    Nov 5, 2012
    Messages:
    6
    Likes Received:
    0
    I tried to upload it with Filezilla and it says "Critical error in
    file transfer." :( I went to the" themes ", I opened
    "Colorway", I transferred custom.js in my pc, I modified it with
    "Notepad", I tried to overwrite it with Filezilla but nothing! What
    mistake?
    Can anyone help me?
     
  7. valilly

    valilly New Member

    Joined:
    Nov 5, 2012
    Messages:
    6
    Likes Received:
    0
    I succeeded! :) How do now to set the font size?
     
  8. valilly

    valilly New Member

    Joined:
    Nov 5, 2012
    Messages:
    6
    Likes Received:
    0
    And the color of the font?
     
  9. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .content-wrapper .content-info h1{
    font-size:30px;
    color:red;
    }

    Inplace of "red" put your color code.

    Adjust font size as per your requirement.
     

Share This Page