如何设置Owl Carousel导航按钮的样式(上一个或下一个)

时间:2014-09-10 10:50:02

标签: html css html5 css3 web

我想在猫头鹰旋转木马中添加小方形按钮而不是椭圆形导航按钮。

尽快帮助我。

1 个答案:

答案 0 :(得分:5)

导航按钮的样式化发生在owl.theme.css

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
    color: #FFF;
    display: inline-block;
    zoom: 1;
    *display: inline;/*IE7 life-saver */
    margin: 5px;
    padding: 3px 10px;
    font-size: 12px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #869791;
    filter: Alpha(Opacity=50);/*IE7 fix*/
    opacity: 0.5;
}