On a confluence instance with anonymous access enabled, I like to create more visibility if the user is not logged in.
The "Log in" link at the top left should become more evident, e.g. by different color, style or background.
I assume this can be done through the system stylesheet ?
Perhaps something similiar to
.login-link a { color:red text-decoration:bold !important }
Does someone know the exact spelling?
It's not a class but an id instead. Therefore try this:
a#login-link { color:red text-decoration:bold !important }
You can add this at Admin -> Look and Feel -> Stylesheet
thanks for your fast response.
it works. (I did also leave out the semicolons in my question)
I'm using this now:
a#login-link { color:red; background:yellow; font-weight: bold; }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great to hear! I wrote this on the fly and forgot the semicolors :P
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.