Links on Slider not showing on mobile or tablet

The links on my slider are showing when browsing on a desktop, but not on a mobile or tablet. Please help!!

www.manwomancamera.com
[email protected]

Hi @mwcblog,

I hope you are well today and thank you for your question.

This is default functionality of theme to hide this text on mobile devices as they overlap on slider image and hide whole image on mobile devices.

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

div.flex-caption {
    display: block;
}

Best Regards,
Movin

This css does work to display the flex-caption div on mobile browsing, but it does not re-size the flex-caption to fit the responsive frame of the slider.

How do we get the flex-caption to resize itself within the responsive parameters of the slider in mobile???

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

div.flex-caption {
display: block;
}
Best Regards,
Movin

It seems the issue with this is actually pertaining to:

.flex-caption .post-categories

.flex-caption h2

.read-more

@tbonner Actually the slider text is intentionally made hidden on mobile devices because on smaller screen they hide the slider text and if we make them smaller then they are hard to read.

If still want to display them make their size smaller then try using the below custom CSS code.

@media (max-width: 768px){
.flex-caption {
    display: block;
    font-size: 70%;
}
.flex-caption h2 {
    font-size: 20px;
}
}