Text boxes in slider

Hello everyone, I hope that it was not covered in previous messages.

I’m playing around the demo of this awesome theme, I’m wondering how to make the text boxes inside sliders to appear when viewed on mobile (small screen) browser.

It seems I can make it done by CSS customization but I have no clue to start.

Any suggestion or comment welcomed.

This text is hidden for reasons. It will overlap your menu and probably header and content as well. It is just too big to be displayed on mobile. if you don’t have excerpt and a very short title it might work for you but in most cases it won’t.

To enable featured text and title on slider you can add the following lines in Theme Options - Other - Custom CSS

@media only screen and (max-width: 767px) {
	.featured-title, .featured-content, .featured-text {
		display: block;
	}
}

Thanks for your advice. Your solution works perfectly.