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

    Hi,
    I´m wondering if it´s posible to have a different content in the iPhone/iPad version…less text, different images, different columns that desktop version. I want to cut a lot of information for mob. devices version … I don´t need to show everything in this versions…
    Thanks :)

    #631262

    Hi @teotaban ;

    to have a different content for each (mobil and desktop) is possible.
    in order to achieve that ; you should give an “id” or “class” to your elements.
    see Turn on Custom CSS Class field for all ALB Elements
    and Hide menu items on mobile

    Just an example :
    Color section (I give an id : my_section_desktop)
    > I put the elements that I want to show only on desktop
    Color section (I give another id : my_section_mobil)
    > I put other elements that I want to show only on mobil

    In the css style :

    /*HIDE ON DESKTOP*/
    #my_section_mobil {display: none !important;}
    
    /*Telephone Styles */
    @media only screen and (max-width: 767px) {
    /*HIDE ON MOBIL*/
    #my_section_desktop {display: none !important;}
    /*SHOW ON MOBIL*/
    #my_section_mobil {display: block !important;}
    }
    • This reply was modified 8 years, 5 months ago by begrafiks.
    #631265

    waaaw :) Thank You … Thank You … you light my day :)

    #631816

    Hi,

    Great, thanks @begrafiks for helping out :-)

    Regards,
    Rikard

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