Hello!
Is it possible to set in one module position header, module-suffix: no-mobile. In the second module in the same position header, only-mobile?
At the moment it does not work
<jdoc:include type="modules" name="header" style="none" />
<jdoc:include type="modules" name="header" style="gk_style" />
@media only screen and (max-width:767px) {
#gkHeaderMod {
display: none;
}
}
@media only screen and (max-width:767px) {
#gkHeaderMod {
background-image: url(../image/bg.jpg);
}
}
@media only screen and (max-width:767px) {
#gkHeaderMod {
background: url(../images/bg.jpg) no-repeat center center transparent;
}
#gkHeaderMod video {
display: none;
}
}