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?
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.
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
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.