Hi,
I made a demo for taxi company: http://www.taxigrijs.nl
I want to know how you can disable just an elements on phone size Example: title or a text in the same column.
See the printscreen, colored red blick. I can’t .find the specific css id.of this elements so i can add it in css file to set display:none
image link: http://www.taxigrijs.nl/wp-content/uploads/2016/11/printscreen.png
Thanks,
Hey SPVL,
If you enable the custom CSS field for builder elements: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/. You can then assign a class to each of the element you want to hide on mobile. Then try this in Quick CSS:
@media only screen and (max-width: 767px) {
.your-class {
display:none !important;
}
}
Best regards,
Rikard