Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8092911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T20:23:18+00:00 2026-06-05T20:23:18+00:00

I have two sections next to eachother- one is for recent work, the other

  • 0

I have two sections next to eachother- one is for recent work, the other for recent blog posts. Each of these sections has 3 thumbnails, under the far right of which I’d like to have a “next” button (though it will be a .png of an ellipse). I’m have difficulty getting each next button into it’s proper place without effecting the other elements.

This section has really given me some trouble today so any and all help is greatly appreciated.

**If I may also ask: I’ve been unable to give the <p><span> elements the proper padding underneath(should be 20px). How do I achieve this?

Here’s what I have currently:
current

Here’s what I’d like the final setup to look like:
ideal

<div id="recent">
        <div id="recent-work">
            <p><span>Recent Work</span></p>
                <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
                <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
                <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
            <div class="next">
                <a href="#"><img src="img/next.png" alt="Click for more information" /></a>
            </div><!-- end next -->
        </div><!-- end recent-work -->

        <div class="divider">
            <img src="img/divider.png" alt="Section divider" />
        </div><!-- end divider -->

        <div id="recent-blog">
            <p><span>Recent Blog</span></p>
                <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
                <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
                <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
            <div class="next">
                <a href="#"><img src="img/next.png" alt="Click for more information" /></a>
            </div><!-- end next -->
        </div><!-- end recent-blog -->
    </div><!-- end recent -->

and

#recent {
    border-top: 1px solid #202020;
    padding-bottom: 40px;
    padding-top: 40px;
}

#recent .divider {
    display: block;
    float: left;
    margin-left: 20px;
}

#recent #recent-work {
    display: block;
    float: left;
}

#recent #recent-work p span {
    font-family: nevis-webfont;
    font-size: 112.5%;
    font-weight: normal;
    letter-spacing: 1px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

#recent #recent-work a {
    padding-bottom: 40px;
    padding-right: 20px;
}

#recent #recent-work .next{
    float: right;
}

#recent #recent-blog {
    display: block;
    float: right;
}

#recent #recent-blog p span {
    font-family: nevis-webfont;
    font-size: 112.5%;
    font-weight: normal;
    letter-spacing: 1px;
    padding-left: 20px;
    text-transform: uppercase;
}

#recent #recent-blog a {
    padding-bottom: 40px;
    padding-left: 20px;
}

#recent #recent-blog .next{
    float: right;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T20:23:19+00:00Added an answer on June 5, 2026 at 8:23 pm

    You can try to use position: absolute; to get the “next button” exactly where you want. Try this:

    HTML

    <div id="recent">
        <div id="recent-work">
            <p><span>Recent Work</span></p>
            <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
            <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
            <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
    
            <div class="next">
                <a href="#"><img src="img/next.png" alt="Click for more information" /></a>
            </div><!-- end next -->
    
         </div><!-- end recent-work -->
    
         <div class="divider">
            <img src="img/divider.png" alt="Section divider" />
         </div><!-- end divider -->
    
         <div id="recent-blog">
            <p><span>Recent Blog</span></p>
            <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
            <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
            <a href="#"><img src="http://lorempixel.com/130/130/" alt="Click for more information" /></a>
    
            <div class="next">
                <a href="#"><img src="img/next.png" alt="Click for more information" /></a>
            </div><!-- end next -->
    
         </div><!-- end recent-blog -->
    </div><!-- end recent -->
    

    CSS

    #recent {
        border-top: 1px solid #202020;
        padding-bottom: 40px;
        padding-top: 40px;
    }
    
    #recent .divider {
        display: block;
        float: left;
        margin-left: 20px;
    }
    
    #recent #recent-work {
        display: block;
        float: left;
        position:relative;
    }
    
    #recent #recent-work p span {
        font-family: nevis-webfont;
        font-size: 112.5%;
        font-weight: normal;
        letter-spacing: 1px;
        padding-bottom: 20px;
        text-transform: uppercase;
    }
    
    #recent #recent-work a {
        padding-bottom: 40px;
        padding-right: 20px;
    }
    
    #recent #recent-blog {
        display: block;
        float: right;
        position:relative;
    }
    
    #recent #recent-blog p span {
        font-family: nevis-webfont;
        font-size: 112.5%;
        font-weight: normal;
        letter-spacing: 1px;
        padding-left: 20px;
        text-transform: uppercase;
    }
    
    #recent #recent-blog a {
        padding-bottom: 40px;
        padding-left: 20px;
    }
    
    #recent .next{
    position:absolute;
    bottom:-15px;
    right:0;
    }
    

    Hope it can help you!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a UITableView with two sections: free and paid. Each section has a
We have two images with transparent sections that each have a map and separately
I have a TableViewController that is using a grouped Style and has two(2) sections.
I have two codes, below, one that hides and the other that unhides rows
I'm creating a WP theme that will have two sections midway down the page.
I have two shapes which are cross sections of a channel. I want to
I have a UITableView with 3 sections. The top two sections are static, and
Two questions only: I have a website including a section of Blog in wordpress.
Have two actionsheet buttons and one modalviewcontroller on mainviewcontroller in application. Now for two
I have two entities – PopularTutorial and Blog. This data need to be displayed

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.