Hello! In the Theme Options there are Footer Settings tab with "Footer Text," "Footer Email Information" and "Footer Call Information." Is there a way to make the text in each of these individually larger? I don't want to make them all the same size, I want to be able to control the size of each of them. Also I would like to center the text for the "Footer Email Information" as well as the "Footer Text." Do you have a code for that too? My site is damageawayusa.com/wordpress Thanks! Tim
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer-wrapper .footer-top-inner2 { font-size: 20px; text-align: center; } .footer-wrapper .footer-top-inner3 { font-size: 20px; } .footer_bottom p.copyright { font-size: 20px; text-align: center; } You can change the value of "font-size" as per your requirment. This will solve your issue.