2

I am working with woothemes flex slider and it is great so far. I am using it right out of the box but I am very confuse on how to customize it. Everything works fine except I would like for the control navs(Left arrow, Right arrow) to always show on the slider and not just when I hover over the image. How can I make the slider arrows always show?

4

1 に答える 1

14

CSS で次の行を編集します。

.flexslider:hover .flex-prev {
    opacity: 0.8;
    left: 5px;
}

に:

.flexslider .flex-prev {
    opacity: 0.8;
    left: 5px;
}

コントロール矢印が常に表示されます。

于 2012-07-14T18:07:56.900 に答える