Remove quick navigation

Ralf

Member
Hi guys,

is there an easy way to remove the quick Navigation on top or bottom of the page?

(I mean that one: HOME>Forum>Xenforo Community Support > )

thanks in advance
 
Hi guys,

is there an easy way to remove the quick Navigation on top or bottom of the page?

(I mean that one: HOME>Forum>Xenforo Community Support > )

thanks in advance

Try adding this in your EXTRA.css

/* REMOVE BREADBOX FROM FOOTER */
.breadBoxBottom {
display: none;
}

That will remove the one in the footer.

/* REMOVE BREADBOX FROM TOP OF FORUM LISTING */
.breadBoxTop {
display: none;
}

will remove it from the top.
 
Top Bottom