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 8263937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T04:16:38+00:00 2026-06-08T04:16:38+00:00

Ive been trying to learn and use twitter bootstrap, especially the carousel element. To

  • 0

Ive been trying to learn and use twitter bootstrap, especially the carousel element. To this end, I have managed to replicate the example in the documentation and everything seems fine – works as expected. My sample HTML carousel code is on: http://dpaste.com/772419/

However, what I would like to do is, tell bootstrap not to make a slide, but rather show all the three (how many ever are present) images in one row – similar to how amazon displays its products. I have read the documentation, but could not figure out how this can be done.

Any thoughts, guidance would be very much appreciated. Thanks.

  • 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-08T04:16:41+00:00Added an answer on June 8, 2026 at 4:16 am

    From my experience using bootstrap in the past I have used this HTML structure. So I believe you could just load multiple images in one slide… Like below..

    <div class="carousel">
          <div class="carousel-inner">
    
        <!-- your slide -->
             <div class="item active">
                    <div class="product">
                        <img src="" alt="" />
                        <p>this is a caption</p>
                    </div>
                    <div class="product">
                        <img src="" alt="" />
                        <p>this is a caption</p>
                    </div>
                    <div class="product">
                        <img src="" alt="" />
                        <p>this is a caption</p>
                    </div>
    
             </div> 
        <!-- end slide -->
    
        <!-- your slide -->
             <div class="item">
                    <div class="product">
                        <img src="" alt="" />
                        <p>this is a caption</p>
                    </div>
                    <div class="product">
                        <img src="" alt="" />
                        <p>this is a caption</p>
                    </div>
                    <div class="product">
                        <img src="" alt="" />
                        <p>this is a caption</p>
                    </div>
             </div> 
        <!-- end slide -->
    
          </div>
    
    </div>
    

    Basically each DIV with the tag ITEM on it is a slide. And ACTIVE determines the first slide.

    EDIT

    Okay so I messed around with it a bit locally trying to reproduce your problem. It looks like the caption issue is most likely coming from the CSS in the bootstrap.css file. Here is the code…

    .carousel-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px 15px 5px;
    background: #333;
    background: rgba(0, 0, 0, 0.75);
    }
    

    The problem here is that your captions are positioned to the bottom of the item container. So the reason you can only see one is because of position:absolute; Making them all lay on top of each other. So most likely for your case you will need to tweak this CSS to get what you are looking for.

    Also note: If you don’t want to change the twitter bootstrap CSS you could add a class to your body tag and use pseudo classes to overwrite the bootstrap CSS.

    How to make the images display in columns:

    To make the images columns you could do a structure similar to this…

    HTML

    <!-- product one -->
    <div class="product-container">
        <img src="" alt="" />
        <div class="carousel-caption">
            <h4>Something For Sale</h4>
           <p>Some description</p>
        </div>
    </div>
    
    
    <!-- product two -->
    <div class="product-container">
        <img src="" alt="" />
        <div class="carousel-caption">
            <h4>Something For Sale</h4>
           <p>Some description</p>
        </div>
    </div>
    
    
    <!-- product three -->
    <div class="product-container">
        <img src="" alt="" />
        <div class="carousel-caption">
            <h4>Something For Sale</h4>
           <p>Some description</p>
        </div>
    </div>
    

    CSS

    .product-container {
       width:33%;
       float:left;
    }
    
    .product-container img {
      margin:0 auto 0 auto;
    }
    

    That should get you in the ball park anyways… It might need to be tweaked a bit.

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

Sidebar

Related Questions

I've been trying to learn to to use Android SDK and have encountered my
Ive been playing around with delegates trying to learn and I ran into one
Lately, I've been trying to learn C++ from this website . Unfortunately whenever I
I've been trying to learn this myself several hours and just had to give
I've been trying to learn how to use the ActionbarSherlock to customize my application
I've been trying to learn wxpython and I see this id when creating widgets
I've been trying to learn how to use simpletest, and I found the simpletest
I've been trying to learn how to use expresso for unit testing and am
I've recently been trying to learn the Object-Oriented aspects of F#, and have become
We're trying to learn to use T4 Templates. I have a desire to use

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.