Mark Invisible users on Forumhome

trilogy33

Well-known member
Probably an easy edit, but how about making usernames in the Members Online Now sidebar box have their usernames appended with an asterisk when invisible?

e.g.
user1, user2, user3, user4*, user5

That way users won't forget that they're hidden. It's quite easy to overlook as the difference in the shades of blue used are hard to distinguish as the text is quite small.
 
I actually use brackets as it's easier to see.

Code:
/* Add brackets to invisible members */
.invisible:before {
content: "(";
}

.invisible:after {
content: ")";
}
 
I actually use brackets as it's easier to see.

Code:
/* Add brackets to invisible members */
.invisible:before {
content: "(";
}

.invisible:after {
content: ")";
}
Thanks, true.
I tried using
Code:
text-decoration: blink;
But that is outlawed and horrid! ;) Plus not supported by anything other than Firefox it seems.
 
Weird. I've been all over the Flexile Dark Style template and the brackets aren't showing.
It's a child style of Flexile (light) - even so, the CSS adjustments are in place, but I cannot figure this one out. :confused:

Not even the asterisk method works.
 
Try adding it back to EXTRA.css but use the !important attribute.

You should be able to use EXTRA.css in this way, that's the purpose of it.

Or, you can try adding the css to the Miscellaneous field in the Style Properties -> Sidebar -> User List Invisible Username
 
Try adding it back to EXTRA.css but use the !important attribute.
My first thought, but something didn't gel right...in other words, nope didn't work. :ROFLMAO:
I always go for the extra.css, it's a lot less work thereafter.
But will have a stab at Misc. Style Properties like you say.
 
Top Bottom