How can I duplicate the line of the featured area?

Discussion in 'Blackriders WordPress Theme' started by glucena, Jul 11, 2014.

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

    glucena Member

    Joined:
    Nov 11, 2013
    Messages:
    56
    Likes Received:
    12
    Hi,

    How can I duplicate the line of the featured area?

    The theme has four featured areas inline on front page. I need four more ...

    How can I add this line?

    Best Regards
     
  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 paste the code given below in that file as instructed in the image given below.

    Code:
    <div class="feature_box second">
    <div class="grid_6 alpha">
    <div class="feature_inner_box first">
    <div class="circle"><a href="Enter The Link Address For First Feature Image Here"><img src="Enter The URL Address of First Feature Image Here" alt="Feature image" /></a></div>
     
    <h6 class="feature_title"><a href="Enter The Link Address For First Feature Heading Here"> Enter the First Feature Heading here</a></h6>
     <p>Enter The First Feature Description Here</p>
     </div>
    <div class="clear"></div>
    </div>
    <div class="grid_6">
    <div class="feature_inner_box second">
    <div class="circle"><a href="Enter The Link Address For Second Feature Image Here"><img src="Enter The URL Address of Second Feature Image Here" alt="Feature image" /></a></div>
     
    <h6 class="feature_title"><a href="Enter The Link Address For Second Feature Heading Here"> Enter the Second Feature Heading here</a></h6>
     <p>Enter The Second Feature Description Here</p>
    </div>
    </div>
    <div class="grid_6">
    <div class="feature_inner_box third">
    <div class="circle"><a href="Enter The Link Address For Third Feature Image Here"><img src="Enter The URL Address of Third Feature Image Here" alt="Feature image" /></a></div>
     
    <h6 class="feature_title"><a href="Enter The Link Address For Third Feature Heading Here"> Enter the Third Feature Heading here</a></h6>
     <p>Enter The Third Feature Description Here</p>
     </div>
    </div>
    <div class="grid_6 omega">
    <div class="feature_inner_box fourth">
      <div class="circle"><a href="Enter The Link Address For Fourth Feature Image Here"><img src="Enter The URL Address of Fourth Feature Image Here" alt="Feature image" /></a></div>
     
    <h6 class="feature_title"><a href="Enter The Link Address For Fourth Feature Heading Here"> Enter the Fourth Feature Heading here</a></h6>
     <p>Enter The Fourth Feature Description Here</p>
    </div>
    </div>
    </div> 
    [​IMG]


    This will solve your issue.
     
  3. glucena

    glucena Member

    Joined:
    Nov 11, 2013
    Messages:
    56
    Likes Received:
    12
    Amazing!

    You are the BEST!
     
Thread Status:
Not open for further replies.

Share This Page