Tagged: easyslider, enfold
Is there a way to extend the EasySlider height so that the title, caption, and CTA button are visible ON MOBILE? The CTA button and the description cut off. I’ve tried to reduce the text size but that only seems to effect the desktop.
Hi servemark!
If we did that then the image would look distorted. I think the best thing to do is reduce the font size or hide the text all together. You currently are using some CSS to set it to 20px.
.responsive #top .slideshow_caption h2 {
font-size: 20px !important;
}
To only target mobiles remove that and add this.
@media screen and (max-width:767px) {
.responsive #top .slideshow_caption h2 {
font-size: 10px !important;
}
}
Best regards,
Elliott