1. Client wants to get rid of the Register link in the right navbar for guests and just use Login / Join (which gives the option to register anyway).
How do I suppress the Register link there?
I have tried this but it doesn't seem to do anything:
2. Client also wants to get rid of the superflous "New posts" button on the forum list:
This doesn't work:
Any suggestions?
How do I suppress the Register link there?
I have tried this but it doesn't seem to do anything:
Code:
/* don't display Register on navbar for guests */
.p-navgroup-link p-navgroup-link--textual p-navgroup-link--register {
display: none;
}
2. Client also wants to get rid of the superflous "New posts" button on the forum list:
This doesn't work:
Code:
/* delete superfluous "new posts" button on thread list */
.button button--icon button--icon--bolt {
display: none;
}
Any suggestions?