Carousel Caption and Button Disappers on Mobile Version

Hi,

I noticed the captions and buttons over the front page carousel disappear on the mobile version, but I 'd like to keep it or simply disable the slider on the mobile versions.

Please help!

Amanda

I have the same problem, the slider it’s not responsive, please give us any solution to keep the text and the buttons appearing on the mobile version. Thank you

Hello there,

I hope you are doing well today.

You can use the following CSS code to have the caption appear by going to Appearance > Customize > Additional CSS and pasting it there.


/*Display mobile caption*/
@media screen and (max-width: 699px) {
    .main-slider .hero-caption .year {
    font-size: 78px;
    font-weight: 700;
    display: block;
}
}

@media screen and (max-width: 699px) {
.main-slider .hero-caption .caption {
    font-size: 28px;
    font-weight: 700;
    display: inline-block;
}
}

Best Regards,
Support