Quote Originally Posted by balihr View Post
Yeah, with Owl Carousel being responsive, it automatically adapts width of the individual item to the size of the container and number of items displayed.

You can try adding a max-width setting in your includes/templates/YOUR_TEMPLATE/css/index_home.css
Code:
.sliderItem {
    max-width: 200px;
    margin: 0 auto;
}
Of course, change the 200 to what you seem fit.
Well, that did work pretty good!. At first I thought it was a major file, but then realized it was only css - no problem. I learned.