I see this in template.css
/* tablet/mobile suffixes */
.onlydesktop { display: block; }
.onlytablet { display: none; }
.onlymobile { display: none; }
I need to hide a module on mobile but I want see it on tablet and on mobile.
If I set in advanced (css module):
onlydesktop
I see the module only on pc, and not on tablet and mobile while I would like to see the module also on tablet and not on mobile ...
how can I do?
tnx