Adding 3 Feature under the 3 Feature on Homepage

Discussion in 'Infoway WordPress Theme' started by hilary987, Jul 15, 2013.

  1. hilary987

    hilary987 New Member

    Joined:
    Jun 19, 2013
    Messages:
    12
    Likes Received:
    0
    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?
     
  2. Nitesh

    Nitesh Support Staff

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

    For this open front-page.php file and add code given below as shown in the image given below.


    pst.png


    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&nbsp;<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&nbsp;<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&nbsp;<span class="button-tip"></span>
    </a></div>
                </div>
    Note: You need to add your heading, description and links manually in the code given above.
     

Share This Page