BuddyBoss Home – Web › Support Forums › Themes › BuddyBoss theme › Remove Navigation Bar
- This topic has 4 replies, 2 contibutors, and was last updated 9 years, 10 months ago by Alyssa.
Question
January 7, 2015 at 11:25 am #34466@allenwbritthotmailHow do I go about removing the main navigation bar? I have the custom menu plugin for buddypress so I do not need the main navigation bar, I just want to remove it.
Answers
January 7, 2015 at 2:49 pm #34469@alyssa-buddyboss
AlyssaParticipant@allenwbritthotmail There are 2 ways to remove the navigation menu:
1) Add this code to your child theme custom.css file:
.main-navigation{display:none;}
2) Copy header.php from the parent theme into the child theme and remove the navigation from the file, you will find the element with the class main-navigation and remove the entire contents.January 7, 2015 at 3:02 pm #34470@allenwbritthotmailAwesome it worked perfect! Thanks for the help….
January 7, 2015 at 3:10 pm #34471@allenwbritthotmailThank you for your help with the navigation bar, I hate to keep making adjustments but now that I have the navigation removed I am realizing I would like to remove the header, but keep that floating navigation on the right… is that possible?
January 7, 2015 at 10:03 pm #34479@alyssa-buddyboss
AlyssaParticipant@allenwbritthotmail try adding this to your custom.css file:
.site-header .site-name{display:none;}
To speed things along you can use FireBug for Firefox or Chrome/IE developer tools and use the inspect element tool to see exactly which CSS element to edit. Then you don’t have to wait for me to respond to simple inquiries like this 🙂
Once you do that you will probably want to edit these values as well. You will have to play with them until you get the desired result:
.header-inner{ padding-top: 20px; padding-bottom: 20px; min-height: 84px; }
- The question ‘Remove Navigation Bar’ is closed to new replies.