saguaros Hi. I now found this guide from JoomlArt:
https://www.joomlart.com/documentation/joomla-faqs/css-related-issues
For a quick test of the guide, I tried to exclude the display of the module for desktop. I added this code to my custom.css file:
@media (max-width: 1200px){
.t3-module.module hidden-lg {
display: none;
}
}
And under Module Class Suffix in the module, I added this:
hidden-lg
But I couldn't get it to work, the module still appears on desktops. I don't know why, is the code I used wrong? Or is there a conflict in the custom.css file? (Please see my link). I first tried 768px in the first code, which didn't work either.