Hi
Thank you for a great template. Easy to Work with for a first time WP user. Everything looks as wanted on computer, but the featured text in the slider is not showing when on mobile. I have tried the below which I found in here. What to do?
Thank you in advance
Thomas
@media only screen and (max-width: 767px) {
.featured-text {
font-size: 10px;
line-height: 13px;
}
Yes we have made the slider content off to display in mobile display. Because too many text will voilate the design. We have designed our theme this way. If you want to display text in your tablet then please add this below custom css
Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save
@media only screen and (max-width: 767px) {
.featured-text {
display: block;
}
}