How to Hide the Navigator?
-
Sorry this is not a HOW TO.
It's a How do you do?
Since I'm suitably unfamiliar with Harmony theme, not having time to look at it properly, until now. I've executed a few hacks after poking around, but I can see I'm tripping wires all over, and while I've managed to remove the navigator and then reclaim. I know I'm not approaching it correctly so that it is stable.
If anyone has the right custom css intervention that doesn't trip wires on other pages, please post. Thanks in advance.
For the record, re: hacks. Testing out the idea of removing the navigator, using Custom CSS/SASS - A few quick edits in inspector achieve a result, within a few minutes of fiddling, but as you can see below it's not right approach and there are undesired consequences.
.page-topic .pagination-block.ready { opacity: 0!important; } .page-topic .topic .posts { max-width: 1200px; width: 990px; list-style-type: none; } @media (min-width:992px) { .d-lg-block { width: 0px; /* display: block!important; */ } }
-
-
Via custom CSS you can do this
.page-topic .pagination-block { display: none !important; }
In a theme you can change navigator.tpl and remove
d-lg-block
nodebb-theme-harmony/templates/partials/topic/navigator.tpl at 73b6431f56990778a81e6948cc1e33d5458ddc14 · NodeBB/nodebb-theme-harmony
Harmony theme for NodeBB v3.0+. Contribute to NodeBB/nodebb-theme-harmony development by creating an account on GitHub.
GitHub (github.com)