That's perfect. Thanks
Custom Static Pages
-
Hello All!
Just curious about a question. I am using the Custom Pages Plugin and see there is an area for custom css classes. I could be wrong, but I think that applies to the Link in the header. My question is that I don't want the link to display in the header. Adding display: none doesn't seem to be working. Any ideas? Thanks!Link:
GitHub - NodeBB-Community/nodebb-plugin-custom-pages: Allows you to add as many new pages as you like to your NodeBB forum
Allows you to add as many new pages as you like to your NodeBB forum - GitHub - NodeBB-Community/nodebb-plugin-custom-pages: Allows you to add as many new pages as you like to your NodeBB forum
GitHub (github.com)
-
You could prevent the link from being rendered with some custom Javascript.
You'll need to pick a name for the custom css class to be used by the page in the navbar, and then alter that using custom css or javascript.
-
You might try using
display: none!important;
in your custom css before you submit to the jQuery @Justin