I need a code that enables a module only the mobile
and another that enables only the PC
Code that enables a module only móvil and only PC
carlucci You can use Bootstrap classes to show/hide elements in specific view ports: https://getbootstrap.com/docs/5.0/utilities/display/#hiding-elements
And add appropriate class into module class field:
- Show on mobile only: d-block d-sm-none
- Show on desktop only: d-none d-lg-block d-xl-none
For example:
saguaros locked the discussion.