Hi, I have a bootstrap carousel and I would like to modify its size but I can not do it, and I tried to apply modifications to the main class, but I only reduce the size of the carousel in case of the carousel images. How do I establish a custom size? ?
Carousel Code:
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img/paso1.png" alt="Facebook" class="img-responsive">
</div>
<div class="item">
<img src="img/paso2.png" alt="Geolocalisacion" class="img-responsive">
</div>
<div class="item">
<img src="img/paso3.png" alt="Pedir" class="img-responsive">
</div>
<div class="item">
<img src="img/paso4.png" alt="Recibir" class="img-responsive">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
try to change the size of "myCarousel" and this does not influence the size of the photos, and when trying to modify the size of the photos, nothing happens either.