Reply To: Hiding top nav bar because we have the menu in the side bar. How?

#21066
Daniel Tara
Keymaster

1. What do you mean by background strip? Do you want the horizontal bar to appear without displaying any menu items? If so, you can either assign a blank menu to it or add the following code:

#access ul {
	display: none;
}

If you don’t want the horizontal bar to appear add this code instead:

#access {
	display: none;
}

2. I see you’ve already taken care of that.