Font Sizes throughout site

Discussion in 'Cloriato WordPress Theme' started by fusionny, Dec 11, 2013.

  1. fusionny

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    hi again,

    1. How would i change the default size for the paragraph text throughout the site.
    2. How do i change the font and site for the main header under the slider on the home page?
    3. How can i change the text that appears in the footer where I have used widgets to make it bolder and center aligned in each footer?

    thank you for your continued assistance.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    p {
    font-size: 13px ! important;
    }
    You can adjust the value of "font-size" as per your requirement.

    2. 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:
    .home_text h1 {
    font-family: symbol;
    font-size: 36px;
    }
    Inplace of "symbol" put your font type and you can also adjust the value of "font-size" as per your requirement.

    3. Could you please clarify your issue little more and also share us your website link.
     
  3. fusionny

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    thank you.
    please see screenshot pertaining to issue number 3.
    I would like each blurb centered and font size bigger and bolder
     

    Attached Files:

  4. fusionny

    fusionny Guest

    Joined:
    Aug 8, 2013
    Messages:
    18
    Likes Received:
    0
    Where do i find the following?
    2. Go to js > custom.js present in your theme directory and remove the code given below
     
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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.

    See the link given below
    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/

    I hope this will help you.
     

Share This Page