How to remove navigation menu from ONE PAGE in Dawn theme

Solved

How to remove navigation menu from ONE PAGE in Dawn theme

elmcinerney
Tourist
3 0 1

Hi,

I'm trying to remove the navigation menu from this page in my shop: www.elmcinerney.com/pages/overlord

I've already tried a few suggestions given in the community for doing this, but none seem to work.

Below is one I tried adding to the liquid.theme file above "</head>"

but it didn't do anything:

 

 {% if page.handle == 'overlord' %}

<style> .site-nav {display: none!important;}

</style>

{% endif %}

 

I'd also like to remove the announcement bar from this page if possible. 

 

Can anyone help? 

 

Thanks!

Accepted Solution (1)

BSSCommerce-B2B
Shopify Partner
1972 564 568

This is an accepted solution.

@elmcinerney , use this code

{% if page.handle == 'overlord' %}
<style> 
nav.header__inline-menu,
.utility-bar {
  display: none!important;
}
</style>
{% endif %}

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

View solution in original post

Replies 2 (2)

BSSCommerce-B2B
Shopify Partner
1972 564 568

This is an accepted solution.

@elmcinerney , use this code

{% if page.handle == 'overlord' %}
<style> 
nav.header__inline-menu,
.utility-bar {
  display: none!important;
}
</style>
{% endif %}

B2B Wholesale Solution: Streamline your B2B operation with advanced features like wholesale registration forms, custom pricing.


B2B Portal, Quote, Net 30: Speed up purchasing and streamline your quotation process with advanced features like quick order, request for quote.


B2B Lock Password Protect: Easily control access to pages, products, and pricing with robust features.


BSS Commerce - Full-service eCommerce Agency I Use Shopify for 1$ in the first month now

elmcinerney
Tourist
3 0 1

Thanks so much! Worked perfectly.