MyBB Community Forums

Full Version: How to remove pages on navigation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey all,
I'm new for using MyBB.
my version is 1.6.2.

What I want to do, is to remove the arrow of pages forum, from navigator.

Now, When you looking at this thread, look to the navigation, and you see what I'm talking about.

Thanks for helpers Smile
removing navigation bar links ?
eg.
MyBB Community Forums / MyBB Support / MyBB 1.6 General Support v
1 2 3 4 5 ... 408 Next ยป
/ [How To?] How to remove pages on navigation


needs template edit OR css edit

let me give a simple css edit ; add below line at top of global.css
.navigation {display:none !important;}
That will hide the entire breadcrumb.

If you just want to hide the multipage arrow, add this to global.css:
#breadcrumb_multipage {
display:none !important;
}