More Demos: bootstrap carrusel, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
Q: Dear support,
Is it possible to change the generated CSS code to put the Prev/Next Arrows ABOVE slider images ?
I've seen templates Crystal and Subway with Arrows outside the slider frame.
A: Yes, you can change generated "style.css" file manually. You should open this file 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;
}