In Attitude Pro using the image slider on the home page, but when size down the browser on desktop or view on mobile, the overlay text doesn’t show up. The area is clickable but the words and background solid color doesn’t appear?
We have designed our theme this way. We have hide the slider content because it overlap the image and you can not see the image so we hide the slider content in mobile view.
Thanks for the quick response. So it seems that we shouldn’t put key messaging in the slider content because it doesn’t show up any other place. If you have any suggestions on how others have addressed this, I’d be most grateful to hear. If not, no problem. Thanks!
To have the slider content you have to add some custom CSS for that go to Appearance -> Customizer/Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
@media only screen and (max-width: 1078px) {
.featured-title,
.featured-content {
display: none;
}
.featured-text .featured-title {
font-size: 19px
}
}