Change Font or make it smaller

Discussion in 'HomeBuilder WordPress Theme' started by shetlerr, Aug 7, 2013.

  1. shetlerr

    shetlerr New Member

    Joined:
    Jul 27, 2013
    Messages:
    25
    Likes Received:
    0
    Would like to make font smaller

    -----------------------------------------

    Hello,

    Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //cufone
     
    Cufon.replace({
        hover: true
    })('#colRight h2')('.reply',{
        hover:true
    })('h1')('h2')('h3')('h4')('h5')('h6');

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .page-heading h1 {
    font-family: symbol;
    font-size: 20px;
    }

    Inplace of "symbol" put your font type and
    you can adjust the value of font-size as per your requirement.

    This will solve your issue.
     

    Attached Files:

  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:
    //cufone
     
    Cufon.replace({
        hover: true
    })('#colRight h2')('.reply',{
        hover:true
    })('h1')('h2')('h3')('h4')('h5')('h6');

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .page-heading h1 {
    font-family: symbol;
    font-size: 20px;
    }

    Inplace of "symbol" put your font type and
    you can adjust the value of font-size as per your requirement.

    This will solve your issue.
     

Share This Page