Reputation: 180
As you can see for yourself in the below url, the incoming image on the carousel has some padding or white background around, and as soon as item becomes active, it kindof zooms in and fits perfectly. http://altana.al/webdev/exterior.html
Let me know any opinions, cannot seem to find anything. Thank you
Upvotes: 0
Views: 34
Reputation: 46
The issue is with padding so in main.css line 714 add padding:0;
.carousel-fade .carousel-inner > .item.next.left,
.carousel-fade .carousel-inner > .item.prev.right,
.carousel-fade .carousel-inner > .item.active {
padding: 0;
}
Upvotes: 2