KEM Posted May 6, 2020 Share Posted May 6, 2020 Hello, I've been stuck on an issue for a couple hours now and thought to reach out to the community! I am using the Pazari template. I am trying to make a landing page for my website - my goal is to keep the logo in the header, and delete just the navigation links on just this page. The other navigation links will be present on the rest of the site. I've gone around and tried several custom CSS codes from around the forum with no success. Can anybody help? Thanks. Link to comment
ChromaticZero Posted May 6, 2020 Share Posted May 6, 2020 Can you post a link to the site? You could do this with javascript using 'window.location.href' to get the page you're, then add a style attribute to hide the navigation... jQuery(function ($){ var pathname = window.location.pathname; if (pathname == "/page2/"){ $(".navigation-class").css("display","none"); } }) Link to comment
tuanphan Posted May 6, 2020 Share Posted May 6, 2020 Add to Page Settings > Advanced > Header <style> .header-nav { display: none; } .burger-box { visibility: hidden; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
KEM Posted May 6, 2020 Author Share Posted May 6, 2020 8 hours ago, tuanphan said: Add to Page Settings > Advanced > Header <style> .header-nav { display: none; } .burger-box { visibility: hidden; } </style> This worked!!!! Thank you so much for your help. ChromaticZero thank you for replying as well!! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.