I have embedded an online booking application on my website. Online booking application also offers a mobile app. I would like to change the application when a customer uses a mobile. Can you give me information or Quick CSS how to do it? How do I set a break point?
Thank you!
Hey tummit!
Please turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and then give your element ( text block or code block element if you are using your application as shortcode ) and then add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 767px) {
.your-custom-class { display: none !important; }}
Regards,
Yigit
Super fast!!!!
Thanks Again!