More Demos: carousel html bootstrap, AI Website Builder, HTML slider, Slick carousel, Bootstrap carousel, HTML slideshow, CSS Slideshow, jQuery carousel, Image carousel
Q: I have created a slide show in wowslider 3.4 - film strip on - image size 480x360.
The web design lends itself to have the film strip the width of the web page eg 980px the image result remaining the same and in the same position ie 480px
Can this done and if so can you point me in the right direction on how to do it.
A: You can try to do it the following way. Open generated .css file in any text editor and find the code:
#wowslider-container1 .ws_thumbs {
bottom: -92px;
height: 64px;
left: 0;
width: 100%;
}
Edit this way:
#wowslider-container1 .ws_thumbs {
bottom: -92px;
height: 64px;
left: -250px;
width: 980px;
}