Reputation: 11
Im not quite sure how to resize the current slideshow I have. I've tried changing many different things but nothing seems to work. Here is my html
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<link href='https://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
<div id="carouselFade" class="carousel slide carousel-fade" data-ride="carousel">
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<div class="carousel-caption">
<h3>Hotel at Midtown, Chicago IL</h3>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur.</p>
</div>
</div>
<div class="item">
<div class="carousel-caption">
<h3>Hotel at Midtown, Chicago IL</h3>
<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur.</p>
<a class="left carousel-control" href="#carouselFade" 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="#carouselFade" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
Here is my Css. Im not quite sure what div is actually responsible for the size of the carousel
.carousel-fade .carousel-inner .item {
opacity: 0;
transition-property: opacity;
padding-top:0;
}
.carousel-fade .carousel-inner .active {
opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
left: 0;
opacity: 0;
z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
opacity: 1;
}
.carousel-fade .carousel-control {
z-index: 2;
}
@media all and (transform-3d), (-webkit-transform-3d) {
.carousel-fade .carousel-inner > .item.next,
.carousel-fade .carousel-inner > .item.active.right {
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.prev,
.carousel-fade .carousel-inner > .item.active.left {
opacity: 0;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.carousel-fade .carousel-inner > .item.next.left,
.carousel-fade .carousel-inner > .item.prev.right,
.carousel-fade .carousel-inner > .item.active {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.carousel-caption {
text-shadow: 0 1px 4px rgba(0,0,0,.9);
font-size:17px
}
.carousel-caption h3 {
font-size: 30px;
font-family: 'Lato', sans-serif;
}
html,
body,
.carousel,
.carousel-inner,
.carousel-inner .item {
height: 100%;
}
.item:nth-child(1) {
background: url("../images/Hotelam1.webp");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.item:nth-child(2) {
background: url('../images/Hotelam2.webp');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
My JS
$('#carouselFade').carousel();
This is what the current slideshow looks like https://i.sstatic.net/fFk4v.jpg . I want to adjust the height and width mainly so you don't need to scroll down to see the slideshow.
Upvotes: 0
Views: 53
Reputation: 1153
.carousel is the usual class for the Carousel. If you amend the CSS with its width property and add more importance then it should change the width.
.carousel {
width: 578px !important;
}
Upvotes: 1