Increase font size

Discussion in 'BlackBird WordPress Theme' started by carmen, Jul 19, 2014.

  1. carmen

    carmen Guest

    Joined:
    Dec 28, 2011
    Messages:
    22
    Likes Received:
    0
    I will like to increase the font size of the testimonial , blog and newsletter section of the front page (3rd, 4th and 5th front page section). Can you help me out with this please ? I'll like to have the font of the title bigger than the body section?
     
  2. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .testimonial h2 {
    font-size: 30px;
    }
    .testimonial .item p {
    font-size: 20px;
    }
    .feature-post .feature-post-inner h2 {
    font-size: 30px;
    }
    .feature-post .feature-post-inner p{
    font-size: 20px;
    }
    .feature-post-inner {
    font-size: 20px;
    }
    .signup h2 {
    font-size: 30px;
    }
    .signup-content .signupinfo {
    font-size: 20px;
    } 
    You can adjust the value of "font-size" as per your requirement.
    This will solve your issue.
     
  3. carmen

    carmen Guest

    Joined:
    Dec 28, 2011
    Messages:
    22
    Likes Received:
    0
    Thank you, I was able to fix all the issues except one. The heading of the Feature Post section
    was not included as part of the code. It looks really small compared to the other sections.
    Is there any way to fix it? http://melsamplethemes.com/ruth/

    Thank you

    Carmen
     
  4. Piyush

    Piyush Support Staff

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

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .feature-post h2 {
    font-size: 30px;
    } 
    You can adjust the value of "font-size" as per your requirement.
    This will change the heading font-size of the Feature Post section.
     

Share This Page