Thread Starter
gzebra
(@gzebra)
One more thing I realized is that when you add text into the slide, it flows outside of the box, even after I’ve specified the width.
Hi, it is possible to click on the side to slide, it requires some CSS tricks but it should not be too hard. Add this snippet to your theme’s custom CSS (if supported) or at the end of the file style.css
.crellyslider>.cs-controls {
height: 100%;
top: 0;
margin-top: 0;
}
.crellyslider>.cs-controls>.cs-previous, .crellyslider>.cs-controls>.cs-next {
background: none;
height: 100%;
box-shadow: none;
}
.crellyslider>.cs-controls>.cs-previous {
left: 0;
}
.crellyslider>.cs-controls>.cs-next {
right: 0;
}
To answer your second question: the slider does not support the width tag for text. Please, make sure that text looks good in the preview. It will be automatically scaled on smaller resolutions.
Thread Starter
gzebra
(@gzebra)
What I meant was to click anywhere within the slide, not the sides. Sorry for the misunderstanding. But, adding a width:100%; fixed it for me. Thanks for the response!
-
This reply was modified 7 years, 7 months ago by
gzebra.