javascripthtmlcssowl-carousel

how edit or disable width in owl-item?


how can to edit or disable width "owl-item" in owl carousel?

my Meaning inside the photo : enter image description here

I acted through

( style.css > .owl-item { width : 80px;} ) , but did not work


Solution

  • 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.