Hello,
If you want to change the display in collapse mode BUT also change the position but in mobile mode, this is possible via CSS.
Follow me step by step :
- Have a look on this
documentation
to learn how to add Custom Css
- For build the godd selector and impact the module filter only when it's required
1. Use your browser inspector tool with right-click => inspect
2. A new window will be display to show the html to find the required html class (mobile filter only)
3. Build your Css command :
.mobile_only_filter_class {
// Your Css command
height: 10px; // or else...
width: 70px; // or else...
etc...
}
Note that to move the position of your filter module even if it remains possible, it will be more touchy.
Some Css command like "
position: relative;"
OR "
position: absolute;"
OR "
position: fixed;" can be solution for you but it must be used with subtlety.
Regards