how add spaces between owl carousel item

后端 未结 8 1036
醉酒成梦
醉酒成梦 2021-02-14 16:15

How can i add space between owl item. add margin or padding between items. this is need to be responsive.can i add some gutter in to the jquery.

8条回答
  •  星月不相逢
    2021-02-14 16:45

    Based on this demo I would say, just increase the margin in the .item class in custom.css.

    #owl-example .item{
        ...
        margin-left: 20px;
        margin-right: 20px;
    }
    

    Be careful with modifying CSS for responsive sites and plugins. If this needed to be adjusted for different resolutions, you could add to your custom.css some media queries and extend the styles accordingly

提交回复
热议问题