There is, but it’s pointless because it’s not properly supported in phones. I know iPhones couldn’t handle it last time I checked.
Thread Starter
Pidor
(@pidor)
Ok, so is possible to take it off when on small screen (have a white background for instance)?
While we’re on the subject, would it be possible to hide the moesia menu on small screen? I would prefer to use another one.
Thanks a lot for your answers vladff, your support is really amazing!
This should do it:
@media (max-width: 991px) {
.panel-row-style {
background-image: none;
}
.mobile-toggle {
display: none;
}
}
Thread Starter
Pidor
(@pidor)
Thanks! Where should I add it though? 🙂
In a custom CSS plugin, haven’t I given you any custom CSS until now? I thought I did.
Thread Starter
Pidor
(@pidor)
I used the plugin “Simple Custom Css” but nothing changed…
Try it like this:
@media (max-width: 991px) {
.panel-row-style {
background-image: none !important;
}
.mobile-toggle {
display: none !important;
}
}
Thread Starter
Pidor
(@pidor)
Works well for the background, the menu is still there though 🙂
Thanks a lot anyway 😉
Yeah, I was probably thinking of something else. Replace .mobile-toggle with .menu-toggle.