How can I increase the number of sections from 4 to 8 sections? I have 8 different items I want to feature and would like to do that on the front page.
Hello, Go to the front-page.php file present in your theme directory and add the code given below in that file as instructed in the image given below. Code: <div class="feature-content one_half extra"> <a href="Enter the link for your fifth feature area"><img class="feature-image" src="Enter the Url address for your fifth feature area" alt="small_image" /></a> <div class="inner-content"> <a href="Enter the link for your fifth feature area"> <h3>Enter the heading for your fifth feature area</h3></a> <p>Enter the content for your fifth feature area</p> </div> </div> <div class="feature-content last one_half last extra"> <a href="Enter the link for your sixth feature area"> <img class="feature-image" src="Enter the Url address for your sixth feature area" alt="small_image" /></a> <div class="inner-content last"> <a href="Enter the link for your sixth feature area"><h3>Enter the heading for your sixth feature area</h3></a> <p>Enter the content for your sixth feature area</p> </div> </div> <div class="feature-content one_half extra"> <a href="Enter the link for your seventh feature area"> <img class="feature-image" src="Enter the Url address for your seventh feature area" alt="small_image" /></a> <div class="inner-content"> <a href="Enter the link for your seventh feature area"> <h3>Enter the heading for your seventh feature area</h3></a> <p>Enter the content for your seventh feature area</p> </div> </div> <div class="feature-content last one_half last extra"> <a href="Enter the link for your eighth feature area"> <img class="feature-image" src="Enter the Url address for your eighth feature area" alt="small_image" /></a> <div class="inner-content last"> <a href="Enter the link for your eighth feature area"> <h3>Enter the heading for your eighth feature area</h3></a> <p>Enter the content for your eighth feature area</p> </div> </div> This will solve your issue.