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

Recent Demos

 How I can change descriptions position in jquery background slideshow?

Q: I like the wowslider, but was wondering if there's a trick to get the "descriptions" to run underneath the pictures in the slide show, as opposed to covering the photos?

A: You can open "style.css" file in any text editor (for example, NotePad), find
"#wowslider-container1 .ws-title" class and change "bottom" value.

For example, you have:

#wowslider-container1 .ws-title{
        position: absolute;
        bottom: 7%;
        left: 0;
        margin-right:5px;
        z-index: 50;
        background-color:#FFF;
        color:#1E4553;
        padding:10px;
        font-family: Tahoma,Arial,Helvetica;
        font-size: 14px;
        opacity:0.7;
        filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);     
}



You should have:

#wowslider-container1 .ws-title{
        position: absolute;
        bottom: -20%;
        left: 0;
        margin-right:5px;
        z-index: 50;
        background-color:#FFF;
        color:#1E4553;
        padding:10px;
        font-family: Tahoma,Arial,Helvetica;
        font-size: 14px;
        opacity:0.7;
        filter:progid:DXImageTransform.Microsoft.Alpha(opacity=70);     
}