Increase Home Page Feature Section from 4 to 8 Sections

Discussion in 'Figero WordPress Theme' started by modifyd, Jan 31, 2014.

  1. modifyd

    modifyd New Member

    Joined:
    May 1, 2013
    Messages:
    7
    Likes Received:
    1
    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.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    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> 

    [​IMG]

    This will solve your issue.
     

Share This Page