Hi there,
a lot of themes and theme frameworks have a cool responsive feature that I would like to use with enfold. A responsive utility that gives you the ability to hide or show elements on the page responsively for different device sizes. To be used for showing and hiding content by device.
Is something like that possible with Enfold? Or is there a plugin for that or even better: are you planning this feature in the future?
Gr Eric
Hi station1!
You can create classes, to enfold Custom CSS and use them at enfold, with Enfold Custom Class area at ALB
It is the same thing that those frameworks also do.
Example:
@media screen and (min-width: 0px) and (max-width: 400px) {
#my-content { display: block; } /* show it on small screens */
}
@media screen and (min-width: 401px) and (max-width: 1024px) {
#my-content { display: none; } /* hide it elsewhere */
}
let us know if those info are enough for you or you need something else.
Thanks a lot
Best regards,
Basilis