Is there a way to keep the Slide Away Header visible above a breakpoint, but slide away below a breakpoint? On the above site (under construction, hence the password), I would love for the logo and call-to-action area remain visible on tablets and above, but slide away on mobile devices. If the setting exists, I haven’t found it. Or, maybe there’s another way to do it?
You can add this CSS to site wide code (assuming you want it to affect all pages with a Chroma head slide on). Just adjust the min-width to suite as necessary.
@media all and (min-width:640px){
.animate.header-slide{
transition: none!important;
transform:translate(0px, 0px)!important;
}
}