I think I have a solution:
On the page of your personal style sheet, set the width and height to match your image size.
Create an additional separate class in this upper div that assigns space to spaces ... (shown below)
<div class="span6 columns" class="carousel"> <div id="myCarousel" class="carousel slide"> <div class="carousel-inner"> <div class="item active">
Without touching bootstrap.css, in your own stylesheet, call the "carousel" (or any other shortcut you choose) to match the width and height of the original pixel!
.carousel { width: 320px; height: 200px;
}
So, in my case, I use small 320x200 images for a carousel. There are probably predefined sizes in bootstrap.css, but I don't like to change this, so I can try to stay up to date with future releases. Hope this helps ~~
rnaka530 Sep 17 '12 at 22:28 2012-09-17 22:28
source share