Here is the HTML code snippet:
<div class="row">
<div class="col-lg-7 col-sm-6">
<div class="owl-carousel" id="homeCarousel">
<div class="item">
<img src="images/brela.jpg" alt="brela makarska">
</div>
</div>
</div>
</div>
This is what I see when inspecting the code:
<div class="row">
<div class="col-lg-7 col-sm-6">
<div class="owl-carousel owl-theme" id="homeCarousel" style="opacity: 1; display: block;">
<div class="owl-wrapper-outer">
<div class="owl-wrapper" style="width: 3918px; left: 0px; display: block; -webkit- transform: translate3d(0px, 0px, 0px); -webkit-transform-origin: 326.5px 50%;">
<div class="owl-item" style="width: 653px;">
<div class="item">
<img src="images/brela.jpg" alt="brela makarska"/>
I would like to change the width value of 653px, but I am unsure where to locate that in the code. If anyone can provide guidance on this issue, it would be greatly appreciated. Thank you!