Change font size in Home Page 2-Cols and Pages

Discussion in 'Cloriato WordPress Theme' started by midoricraft, Dec 17, 2012.

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

    midoricraft Member

    Joined:
    Dec 7, 2012
    Messages:
    38
    Likes Received:
    0
    I wish to enlarge the font size at home page 2-Cols, left column to be exact. Is it possible and how do I make the change?

    Similarly, is it possible to change the font size in each individual pages and posts?
     
  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:
    //Font replace
    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-size:25px!important;
    }
    p{
    font-size:16px!important;
    }

    Adjust font size as per your requirements.
     
  3. midoricraft

    midoricraft Member

    Joined:
    Dec 7, 2012
    Messages:
    38
    Likes Received:
    0
    Thanks, Gourav.

    I could not find the file, Custom.Js. Is it in the Editor area?
     
  4. midoricraft

    midoricraft Member

    Joined:
    Dec 7, 2012
    Messages:
    38
    Likes Received:
    0
    Can help pls? I also found out that your proposed solution will change the font size in Col-2 too. Is it possible for Col-1 and Col-2 to have different font size in the contents?
     
  5. 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:
    .feature_content .feature_box .feature_inner h2{
    font-size:15px!important;
    }
    .feature_content .feature_box .feature_inner p{
    font-size:14px!important;
    }
     
    .last h2 a{
    font-size:17px!important;
    }
    Adjust font size as per your requirements.
     
    midoricraft likes this.
  6. midoricraft

    midoricraft Member

    Joined:
    Dec 7, 2012
    Messages:
    38
    Likes Received:
    0
    Thank you v much! You solved my problem.
     
Thread Status:
Not open for further replies.

Share This Page