Site logo

Archived topic

Remove header on some mobile pages

9 replies · Started by Tully on July 26, 2018

Viewing posts 1–10 of 10

Hi guys,

I would like to remove the header on mobile for some pages only (such as shopping cart, checkout, etc). I have tried the following css you suggested on another topic:

@media (max-width: 768px) {
.main-navigation.mobile-header-navigation {
display: none;
}
}

but no result, I think because I am using gp hooks and things for different headers on mobile?

Thanks, Tully

Hi there,

Any chance you can link us to the page in question?

You can edit the original topic and use the private URL field.

Thanks!

Just edited sorry. Did put that in before but I had forgotten to put a topic subject in when I pressed submit, and when I added that it had removed all the url etc.

Try this:

@media (max-width: 768px) {
    .woocommerce-cart .site-header, .main-navigation {
        display: none;
    }
}

Great thanks Leo. If I want to remove the menu also?

Just the menu toggle or the entire green navigation bar?

The entire nav bar thanks.

Thanks Leo

No problem :)

This archived topic is closed to new replies.