how can to edit or disable width "owl-item" in owl carousel?
I acted through
( style.css > .owl-item { width : 80px;} ) , but did not work
If you want to override the div's width in style.css -> change it as below,
.owl-item { width : 80px !important; }
!important -> Specified style Will be applied to the css elements irrespective of the style being mentioned in the element.
If you want to know how it get applied just have a look in the link
Hope it helps.