inherit
243727
0
Apr 21, 2017 20:00:46 GMT -8
sabotage231997
20
April 2017
sabotage231997
|
Post by sabotage231997 on Apr 13, 2017 6:21:04 GMT -8
Can anyone please tell me how to remove lower NAV Bar as seen in image below? Please be specific where to put any code. Thankx, your help is greatly appreciated. -Thomas
|
|
inherit
2671
0
May 14, 2013 14:40:03 GMT -8
Peter
🐺
10,615
February 2002
peter3
|
Post by Peter on Apr 13, 2017 13:48:16 GMT -8
You can remove it from your forum wrapper layout template. Look for something like "$[navigation.tree]".
Or you could add some CSS to the stylesheet that hides it in case any plugins require it.
#navigation-tree {
display: none;
}
A few different options for you.
|
|