Hi Guys (Regards and even more success in 2017!!)
Searched but cannot find answer… I want to disable captions on sliders from showing on mobile only. Is it possible?
Annemarie
Hey Annemarie,
Thanks for your kind wishes. We wish the same to you :)
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 480px) {
.container.caption_container {
display: none !important;
}}
Best regards,
Yigit
Hi Yigit,
it didn’t work but you helped me see how to find out. The css below worked. Thank you!
@media only screen and (max-width: 480px) {
.avia-inner-caption {
display: none !important;
}}