Englishjquery slides  Deutschjavascript bildergalerie  Españolgaleria de fotos  Françaislogiciel diaporama  ItalianoImmagini Galleria   汉语网络幻灯片: 效果的幻灯片  Português brasileiroGaleria De Imagens  Русскийслайдер изображений, слайдшоу, CSS слайдер  Svenska Bild Galleri  日本語画像のスライダー&ギャラリー  NederlandsAfbeeldingen Caroussel 

Recent Demos

 Is it possible to change prev/next buttons position in html slideshow maker?

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;
}