Englishslides jquery  Deutschprogramm für diashow  Españolcarousel jquery  Françaisdiaporama gratuit  ItalianoImmagini Galleria   汉语网络幻灯片: 效果的幻灯片  Português brasileiroGaleria De Imagens  Русскийслайдер изображений, слайдшоу, CSS слайдер  Svenska Bild Galleri  日本語画像のスライダー&ギャラリー  NederlandsAfbeeldingen Caroussel 

Recent Demos

 Can I change position of next and preview buttons in slideshow with jquery?

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