I have been looking for some option but I have not found how to configure the resolution of the carousel.
I'll give you an example. Have this image:
Inthecarouselitlookslikethis:
Is there any way to make it whole, or a bigger part?
Does this setting exist in the carousel? Or does it have to be done by css?
My carousel code :
<section id="main-slider" class="carousel">
<div class="carousel-inner">
<div class="item active">
<div class="container">
<div class="carousel-content">
<h1>Horticultura Sustentável</h1>
<p class="lead">Horticultura Sustentável</p>
</div>
</div>
</div>
<div class="item">
<div class="container">
<div class="carousel-content">
<h1>IAC</h1>
<p class="lead">Lala <br>lala</p>
</div>
</div>
</div>
</div><!--/.carousel-inner-->
<a class="prev" href="#main-slider" data-slide="prev"><i class="icon-angle-left"></i></a>
<a class="next" href="#main-slider" data-slide="next"><i class="icon-angle-right"></i></a>
</section>
CSS :
#main-slider {
background-image: url(../images/slider-bg.jpg);
background-attachment: fixed;
background-size: cover;
background-position: 50% 50%;
background-repeat: no-repeat;
padding: 200px 0;
color: #fff;
}