Hello there,
is it possible to disable some modules (e.g. the slideshow) in mobile devices?
Thank you in advance
/* limitation suffixes */
.box.notablet {
display: block!important;
}
.box.nomobile {
display: none!important;
}
.box.onlytablet {
display: none!important;
}
.box.onlymobile {
display: block!important;
}
.box.notablet.nomobile {
display: none!important;
}
@media all and (max-width: 620px) {
#uniqueElementID {
display: none;
}
}