1
I’ve been looking for some option but could not find how to configure Carousel resolution.
I’ll give you an example. Have this image:
In the Carousel she looks like this:
Is there any way to make it whole, or a bigger part?
Does this configuration exist in Carousel? Or does it have to be done by css?
My code from the Carousel:
<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;
}
You can post the codes?
– user21847
@Natan, I posted,
– Rodolfo Oliveira
Apply the img-rounded and img-Responsive classes to the Carousel images. If it does not work, please apply the CSS code of this JSBIN: http://jsbin.com/sefilorewu/1/edit
– user21847