Expanding Featured section homepage

Discussion in 'Figero WordPress Theme' started by dek1j, Nov 25, 2013.

Thread Status:
Not open for further replies.
  1. dek1j

    dek1j New Member

    Joined:
    Nov 22, 2013
    Messages:
    10
    Likes Received:
    0
    Hi,

    How do i expand the homepage featured section? At the moment i got only 4 sections i can use while i want to use 6 or 8 in total. Thanks in advance.

    http://www.xbox360eombouwen.nl/
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Adding more featured area through theme options require lot of customization.
    But yes you can add you images, heading and content manually.
    Copy code given below and paste it in the "front-page.php" as shown in the image given below.
    After pasting code in the front page.
    Add your image at the place of "YOUR IMAGE ADDRESS"
    Add image link at the place of "YOUR IMAGE LINK"
    Add heading at the place of "YOUR HEADING"
    And content.

    Code:
     <div class="feature-content one_half">
                                                <a href="YOUR IMAGE LINK"><img class="feature-image" src="YOUR IMAGE ADDRESS" alt="small_image" /></a>
                                            <div class="inner-content">
                                                  <a href=""><h3>YOUR HEADING</h3></a>
                                                                                <p><ul>
        <li>Fabrieksgarantie vervalt</li>
        <li>Op Xbox live spelen blijft mogelijk</li>
        <li>Gebrande spellen afspelen</li>
        <li>Spelen van homebrew niet mogelijk</li>
    </ul>
     
    </p>
                                                </div>
                    </div>
                    <div class="feature-content last one_half last">
                                              <a href="YOUR IMAGE LINK"><img class="feature-image" src="YOUR IMAGE ADDRESS" alt="small_image" /></a>
                                            <div class="inner-content last">
                                                        <a href=""><h3>YOUR HEADING</h3></a>
                                                                                <p><ul>
        <li>Behoud van fabrieksgarantie</li>
        <li>Op Xbox live spelen blijft mogelijk</li>
        <li>Gebrande spellen afspelen</li>
        <li>Spelen van homebrew niet mogelijk</li>
    </ul></p>
                                                </div>
                    </div>
     
                    <div class="feature-content one_half">
                                            <a href="YOUR IMAGE LINK"><img class="feature-image" src="YOUR IMAGE ADDRESS" alt="small_image" /></a>
                                            <div class="inner-content">
                                                      <a href=""> <h3>YOUR HEADING</h3></a>
                                                                                <p><ul>
        <li>Spellen afspelen van <strong>externe harddisk</strong></li>
        <li>Op Xbox live spelen blijft mogelijk</li>
        <li>Exclusief de x360 key zelf</li>
        <li>Behoud van fabrieksgarantie</li>
        <li>Spelen van homebrew is mogelijk</li>
    </ul></p>
                                                </div>
                    </div>
                    <div class="feature-content last one_half last">
                                          <a href="YOUR IMAGE LINK"><img class="feature-image" src="YOUR IMAGE ADDRESS" alt="small_image" /></a>
                                            <div class="inner-content last">
                                                    <a href=""><h3>YOUR HEADING</h3></a>
                                                                                <p><ul>
        <li>Spellen afspelen van <strong>externe harddisk</strong></li>
        <li>Op Xbox live spelen blijft mogelijk</li>
        <li>Exclusief de x360 key zelf</li>
        <li>Behoud van fabrieksgarantie</li>
        <li>Spelen van homebrew niet mogelijk</li>
    </ul></p>
                                                </div>
                    </div>

    frontpage.png


    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. dek1j

    dek1j New Member

    Joined:
    Nov 22, 2013
    Messages:
    10
    Likes Received:
    0
    Thanks, i will work this out.
     
Thread Status:
Not open for further replies.

Share This Page