Hi, I want to know if I can have a mobile version and a desktop version of the same page?
Hey bakbek!
Using custom CSS you can hide/display certain elements on desktop/mobile. You can turn on custom CSS field for ALB elements ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) to make it easier.
An example code would be
@media only screen and (max-width: 480px) {
.show-only-on-desktop { display: none; }}
@media only screen and (min-width: 481px) {
.show-only-on-mobile { display: none; }}
Regards,
Yigit
For some reason this is not working on my site for mobile :( It was working in the past when I tried it.
Any current known issues with this?