Disable/hide fixed navigation on the checkout page
-
Is there a possibility to disable/hide the fixed navigation only on the checkout page? I already tried it with:
.woocommerce-checkout .main-header.act-scroll {
display: none;
}
This however doesn’t show the site logo and menu when you are not entirely at the top of the page. Is there a workaround for this?
Hello,
Could you please provide us your website access so we can check why this solution is not working for you?
Thank you
Hello Support,
Check the private content. When custom code is used please write something commented out in front of the code so I can see what changed. This way I can adjust it a little of some extra work is needed.
Thanks in advance,
Floris
Hi,
You can hide the menu icon with the following code snippet. Unfortunately, you can’t disable sticky header completely on the checkout
.woocommerce-checkout .right-column .mobile-nav-icon {
display: none!important;
}
Regards