MyBB Community Forums

Full Version: Removing arrow.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey can anyone tell me how to remove this blueish arrow and the page nav below from it?

[Image: LRebQ.jpg]
you can remove content like below from nav_dropdown template of the theme (in navigation templates group)
 <img src="{$theme['imgdir']}/arrow_down.png" alt="v" title="" class="pagination_breadcrumb_link" id="breadcrumb_multipage" />

OR add below style property at the bottom of global.css of the theme
#breadcrumb_multipage {display: none;}
Thanks!