XF 2.3 breadcrumb location change

You'll need to edit PAGE_CONTAINER, find:

Code:
            <xf:ad position="container_breadcrumb_top_above" />
            <xf:macro id="breadcrumbs"
                arg-breadcrumbs="{$breadcrumbs}"
                arg-navTree="{$navTree}"
                arg-selectedNavEntry="{$selectedNavEntry}" />
            <xf:ad position="container_breadcrumb_top_below" />

Move it down, just above:

Code:
<div class="p-body-main {{ $sidebar ? 'p-body-main--withSidebar' : '' }} {{ $sideNav ? 'p-body-main--withSideNav' : '' }}">

You appear to have a custom style so you may have an option to move it around already, or the code I posted above may be slightly different.
 
Back
Top Bottom