More Demos: responsive bootstrap slider, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
Q: I use your wowslider. I like it. I want know, what CSS code would be needed to show the arrows only and not the background outside of the image?
A: You should open "style.css" file, generated by wowslider, in any text editor (for
example, NotePad), find following lines:
#wowslider-container20 a.ws_next {
background-position: 100% 0;
right: 0;
}
#wowslider-container20 a.ws_prev {
background-position: 0 0;
left: 0;
}
and change right and left parameters. For example:
#wowslider-container1 a.ws_next {
background-position: 100% 0;
right: -39px;
}
#wowslider-container1 a.ws_prev {
background-position: 0 0;
left: -39px;
}