http://www.perlmonks.org?node_id=883868


in reply to Re: RFC: Purpose of Robes in Monasteries
in thread RFC: Purpose of Robes in Monasteries

  • Easy to confuse with AnomalousMonk because I'm old and my eyes are bad.

Putting the following snippet in your On-Site CSS Markup (Display Settings) may help distinguish:

a[href="?node_id=961"], a[href="?node=Anonymous%20Monk"] { color: #c000a0; }

(Feel free to use a different color, if you don't like pink :)

Caveat: Attribute Selectors may not work with older browsers.

Replies are listed 'Best First'.
Re^3: RFC: Purpose of Robes in Monasteries (CSS)
by rowdog (Curate) on Jan 24, 2011 at 17:29 UTC

    Thanks for the tip, I didn't even know you were here before!

      Anonyrnous is a sneaky one, but he didn't get past me, this works even with old browser
      .node-from-961, .nnt-author-961 { background-color:Yellow; color:Black; }

        Yes, that's another way, but those class attribute values are being used somewhat inconsistently (e.g. they're not present when you read a thread), so I figured selecting the links directly by the value of their href attribute ("?node_id=961") might produce more consistent results...