Ralf Member Oct 31, 2012 #1 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
TPerry Well-known member Oct 31, 2012 #2 Ralf said: 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 Click to expand... 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. Upvote 0 Downvote
Ralf said: 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 Click to expand... 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.