Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #326418

    Hi, I want to know if I can have a mobile version and a desktop version of the same page?

    #326458

    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

    #409707

    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?

    #410750

    Hi @markpevans,

    Can you post the link to your website please?

    Regards,
    Josue

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.