More Demos: simple bootstrap slider, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
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;
}