Hello! Is there a way to add text to the home page after the 3 pictured Freatured Area? My website is http://damageawayusa.com/wordpress/ Thank you! Tim
Hello, Go to the front-page.php file present in your theme directory and paste code given below in that file as shown in the image. Code: <div>Enter your text here</div> See the image for reference. This will solve your issue.
Awesome! Works like a charm! Is there a way to center the text and be able to change the font size? Thanks! Tim
Hello, You can put the code given below in the front-page.php file Code: <div class="extra_text" style=" font-size:15px; text-align:center; ">Enter your text here</div> instead of the code given in the above post Code: <div>Enter your text here</div> This will solve your issue.