Hello,
im having an Action bar active on
http://karlsmuehle.de/ and i want to hide it on desktop and only show it on mobile.
I tryed "@media only screen and (min-width: 960px) { #Action_bar { display: none; } }" from another post, but it still has the emüty space above the menu now. can i solve that problem somehow?
Comments
try this css
#Action_bar { display: none !important; }thanks@media (max-width:960px) {
body #Action_bar { display: block !important; }
}
body.header-semi.ab-show #Top_bar:not(.is-sticky) {top: 0px !important;
}