Appearance of the slider on smartphone

Dear Support team,
Hope you’re well today.
I just noticed that on a smartphone the text (category, title, read more) does not appear on the slider although it works very well on a PC.
Is there a way to make text appear on a smartphone too ?

Many thanks.

Alexandra

Hi Alexandra,

I am well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS


.flex-caption {
    display: block;
}

Best Regards,
Movin

Hi Movin,

Thanks a lot for your quick answer. It works well but on the smartphoone the font is tooo big so that it is not possible to read all the text. Is there any solution to reduce the font (on the smartphone only) ?

Have a good day !

Warmest regards from Dakar !

Use the below CSS code to achieve it.

@media (max-width: 767px){
    .flex-caption {font-size: 10px;}
    .flex-caption h2 {font-size: 20px;}

}