x

How to remove navigation menu from single page (desktop and mobile)?

Hi I would like to remove the navigation menu entirely (for desktop AND mobile) for just one page on my site. I've looked through all of the past solutions I could find and the furthes I got was being able to remove the text on the navi menu but the black bar that sits behind it (as well as the social links that sit at the bottom) were still there. I would like the page to only feature the main section, NO navigation whatsoever on desktop and no navigation menu on mobile (if the social links have to go as well, that is fine). I've linked the page below. Thanks in advance! 

https://www.maxmacmusic.com/portal.html

1,965 Views
Message 1 of 5
Report
2 Best Answers

1,942 Views
Message 6 of 5
Report

Best Answer

Perfect! Thank you! I was able to remove both the desktop and moblie navigation by adding the following codes to that specific page's header :

<style>
#desktop-nav { display:none; }
</style>
<style>
#nav-handle { display:none; }
</style>

I then corrected the background to fill behind where the desktop navigation menu used to be by adding the following code:  (Specifically I changed "padding-left" in the following code from "250px" to "0px".)

<style>
body.postload .page-content.w-navpane-slide {
padding-left: 0px;
right: 0;
}
</style>

View Best Answer >

1,936 Views
Message 6 of 5
Report
4 REPLIES 4

1,943 Views
Message 6 of 5
Report

Best Answer

Perfect! Thank you! I was able to remove both the desktop and moblie navigation by adding the following codes to that specific page's header :

<style>
#desktop-nav { display:none; }
</style>
<style>
#nav-handle { display:none; }
</style>

I then corrected the background to fill behind where the desktop navigation menu used to be by adding the following code:  (Specifically I changed "padding-left" in the following code from "250px" to "0px".)

<style>
body.postload .page-content.w-navpane-slide {
padding-left: 0px;
right: 0;
}
</style>

1,937 Views
Message 6 of 5
Report

Tried the code you posted and it didnt work for me Smiley Sad sux 4 me...

1,911 Views
Message 6 of 5
Report

Hi there - Each person's code will be different. Refer to the first link posted and it should work!

1,251 Views
Message 6 of 5
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.