Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap change carousel height

Tags:

I have a jsfiddle here - http://jsfiddle.net/gh4Lur4b/8/

It's a full width bootstrap carousel.

I'd like to change the height and still keep it full width.

Is the height determined by the image height.

How can I chanhe the height of the carousel and keep it 100% width.

.carousel-inner{     // height: 300px; }  .item, img{     height: 100% !important;     width:  100% !important;     border: 1px solid red; } 
like image 625
ttmt Avatar asked Feb 18 '15 17:02

ttmt


People also ask

How do I change the width and height of a bootstrap carousel?

The carousel height is set by the height of the image. @ccc3, Printninja is right. You could set CSS on the image element so that at certain screen sizes (using media queries) the image has a max-height setting. This will effect the width as well because it's going to effect the ratio/dimensions of the image.

What size should bootstrap carousel images be?

If you want to have a carousel image that spans the full width of the screen its probably a good idea to use an image that is at least 1024 px wide (possibly wider), though you don't want it to be too high resolution, since that would take a long time to load.


1 Answers

The following should work

.carousel .item {   height: 300px; }  .item img {     position: absolute;     top: 0;     left: 0;     min-height: 300px; } 

JSFille for reference.

like image 50
Bart Jedrocha Avatar answered Sep 18 '22 15:09

Bart Jedrocha