Flexslider change buttons

user2257323 picture user2257323 · Apr 8, 2013 · Viewed 9.8k times · Source

is there anyway I can change the little navigate buttons into text buttons on flexslider? I can't find it anywhere on internet.

Answer

junkrig picture junkrig · Jan 7, 2015

To use an image as the navigation button:

.flex-direction-nav a:before  { 
    content: " ";
    display: block;
    background: url('../path-to-image/flexslider-left.png') no-repeat;
    width: 40px;
    height: 40px;
}
.flex-direction-nav a.flex-next:before  { 
    content: " ";
    display: block;
    background: url('../path-to-image/flexslider-right.png') no-repeat;
    width: 40px;
    height: 40px;
}