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: https://github.com/psychobunny/nodebb-plugin-custom-pages
-
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.
-
@Ted So simple and I over complicated the issue. Thanks for the help!
-
You might try using
display: none!important;
in your custom css before you submit to the jQuery @Justin