Hi I would like to add under the 3 feature boxes on the home page (.feturebox), 3 more feature boxes. I was going to copy and paste the CSS code with a new name (.addeddiv) and add the div to main_page_template... Will this work?
Hello, For this open front-page.php file and add code given below as shown in the image given below. Code: <div class="featurebox_inner"> <div class="featurebox_desc first"> <h2><a href="#">Your heading</a></h2> <p>Your description</p> <a href="your read more link" class="readmore"> Read More <span class="button-tip"></span> </a></div> <div class="featurebox_desc second"> <h2><a href="#">Your heading</a></h2> <p>Your description</p> <a href="your read more link" class="readmore"> Read More <span class="button-tip"></span> </a></div> <div class="featurebox_desc third"> <h2><a href="#">Your heading</a></h2> <p>Your description</p> <a href="your read more link" class="readmore"> Read More <span class="button-tip"></span> </a></div> </div> Note: You need to add your heading, description and links manually in the code given above.