Home Forums Theme support Loovo Theme Header Height Reply To: Loovo Theme Header Height

Hi,

you can remove the sticky header on mobile devices with css code. Please add this code at the end of your style.css file:

@media only screen and (max-width: 979px) {
    #nav.one_page_fixed {
        position:relative !important;
    }
}

This should solve the problem.