Hello again,
I need help with hiding a specific avia row/column-element for display on desktops. That means, that the element shall only be visible on smartphones.
Thank you very much in advance for a hint!
Hey fw100,
If you enable the custom CSS fields under Enfold->Layout Builder, you can then add a class to the element in question. For instance only-mobile. Then add this to Quick CSS:
.only-mobile {
display:none;
}
@media only screen and (max-width: 767px) {
.only-mobile {
display:block;
}
}
Best regards,
Rikard