I have made several attempts to create responsiveness on the Slider Revolution to remove the tiny or not showing text at all. I have used custom CSS found on this forum, watched and followed the directions in the ThemePunch video, but cannot get the text in the slider to display correctly.
This is the code, per another person’s help ticket I used:
Blockquote
.my-button .cp-trigger-shortcode {
font-size: 29px !important;
}
@media(max-width:979px) {
.my-button .cp-trigger-shortcode {
font-size: 25px !important;
}
}
@media(max-width:767px) {
.my-button .cp-trigger-shortcode {
font-size: 20px !important;
}
}
@media(max-width:480px) {
.my-button .cp-trigger-shortcode {
font-size: 17px !important;
}
}