XF 2.2 How can I hide the breadcrumbs on top of the page?

Solution
You probably selected a different pagination option in the ACP, my bad. This one should show the pagination only at the end of the page:
CSS:
.block-outer.block-outer--after .block-outer-main nav.pageNavWrapper {
    display: inherit;
}

nav.pageNavWrapper {
    display: none;
}
You probably selected a different pagination option in the ACP, my bad. This one should show the pagination only at the end of the page:
CSS:
.block-outer.block-outer--after .block-outer-main nav.pageNavWrapper {
    display: inherit;
}

nav.pageNavWrapper {
    display: none;
}
 
Solution
Top Bottom