Hi ! How is it possible to hide a module in the mobile view for exemple ? Thank you.
Hi
You can go to Advanced tab of a module >> Module Class option >> add d-none d-sm-block
Remember to add a space before this class.
It will hide module on mobile only.
Thank you but d-none hide also in the desktop view...
Is there another Class Module to hide Tablet, Desktop, ... I didn't find anything in the documentation.
gcoral My bad, I thought you want to hide all screens. To hide on mobile only, use this class: d-none d-sm-block
d-none d-sm-block
You can check out this list for hiding elements: https://getbootstrap.com/docs/5.0/utilities/display/#hiding-elements
P/s: when you add class into module, remember to remove the dot before the class name like what I added in above screenshot.
It works fine now ! Thank you for the list.