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 :)
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;}
}
waaaw :) Thank You … Thank You … you light my day :)