XF 1.2 Can you take away the Navigation Bar on pages

oO5 Dynasty

Well-known member
So i was wondering if their was away to take away the Navigation bar. I created new pages for my site and i wanted to remove the navigation bar on them.
 
Do you mean the breadcrumbs?

EXTRA.css:
Code:
.node10 .breadBoxTop,
.node10 .breadBoxBottom
{
    display: none;
}

Change the node ID accordingly.
 
The bottom breadcrumb is missing so I suspect a mistake in your code somewhere.

The example I provided works.


ok so this was the correct way for me to put the code in extra.css
.node89 .breadBoxTop,
.node89 .breadBoxBottom
{
display: none;
}

Their might be something else going on wrong with my coding. ok
 
Top Bottom