KimPorter Posted January 6, 2020 Share Posted January 6, 2020 How do I hide a page title from the navigation bar? I had code in the CSS but it's no longer working, I want to remove the second "Home" from the navigation. Website: www.kimportertv.com Thank you! Link to comment
tuanphan Posted January 6, 2020 Share Posted January 6, 2020 Add to home > Design > Custom CSS nav#mainNavigation>div:nth-child(2) { display: none !Important; } 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
KimPorter Posted January 6, 2020 Author Share Posted January 6, 2020 8 minutes ago, tuanphan said: Add to home > Design > Custom CSS nav#mainNavigation>div:nth-child(2) { display: none !Important; } Thank you, this worked on my computer but it's still visible on my phone. Link to comment
tuanphan Posted January 6, 2020 Share Posted January 6, 2020 yes, above code for desktop, and here for mobile nav#mobileNavigation>div:nth-child(2) { display: none !important; } 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
KimPorter Posted January 6, 2020 Author Share Posted January 6, 2020 1 minute ago, tuanphan said: yes, above code for desktop, and here for mobile nav#mobileNavigation>div:nth-child(2) { display: none !important; } Perfect thank you so much! 🙂 Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.