Hi,
Is there any solution to this one ? I've tried to dig this a bit but i couldn't find a solution myself, it appears that whenever i try to apply a suffix for mobile devices the module doesn't appear anywhere.
Regards
/* tablet/mobile suffixes */
.notablet {
display: block;
}
.nomobile {
display: block;
}
.onlytablet {
display: block;
}
.onlymobile {
display: block;
}
@media only screen and (min-width:720px) and (max-width: 985px) {
.onlytablet {
display: block;
}
.notablet {
display: none;
}
}
@media only screen and (max-width:719px) {
.nomobile {
display: none;
}
.onlymobile {
display: block;
}
}