Font color and size on pages and posts

Discussion in 'Infoway WordPress Theme' started by robert l, Sep 10, 2013.

  1. robert l

    robert l Member

    Joined:
    May 23, 2013
    Messages:
    68
    Likes Received:
    0
    Location:
    Princeton, NJ
    Is it possible to adjust the font size for the Paragraph, Address, Preformatted, and Heading (1-6) settings, along with the font color for each?

    Thank you.

    Robert
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    P{
    font-size:15px ! important;
    color:red! important;
    }
    address{
    font-size:15px ! important;
    color:red! important;
    }
    pre{
    font-size:15px ! important;
    color:red! important;
    }
    h1{
    font-size:24px ! important;
    color:red! important;
    }
    h2{
    font-size:22px ! important;
    color:red! important;
    }
    h3{
    font-size:20px ! important;
    color:red! important;
    }
    h4{
    font-size:18px ! important;
    color:red! important;
    }
    h5{
    font-size:16px ! important;
    color:red! important;
    }
    h6{
    font-size:14px ! important;
    color:red! important;
    }
    You can adjust these values as per your requirement.
    This will solve your issue.
     

Share This Page