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

Recent Demos

 Change image gallery description position

Q: Hi,
wowslider is perfect! One thing I want to change is the position of the description. I want it to be at the top of the main image. Is it possible? I use the Prime Time template. Thank you.

A: Please, open generated .css file in any text editor and find the code:

#wowslider-container1 .ws-title {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 0 3px 3px 0;
    bottom: 10%;
    color: #4589CE;
    display: block;
    font-family: 'Open Sans Condensed',sans-serif;
    font-size: 27px;
    left: 0;
    line-height: 27px;
    margin-right: 5px;
    padding: 7px;
    position: absolute;
    z-index: 50;
}



edit the value of the bottom parameter this way:

#wowslider-container1 .ws-title {
    background: none repeat scroll 0 0 #FFFFFF;
    border-radius: 0 3px 3px 0;
    bottom: 70%;
    color: #4589CE;
    display: block;
    font-family: 'Open Sans Condensed',sans-serif;
    font-size: 27px;
    left: 0;
    line-height: 27px;
    margin-right: 5px;
    padding: 7px;
    position: absolute;
    z-index: 50;
}