Color for "Discussion in ...."

Add the following to the EXTRA.css template:

Code:
#pageDescription
{
color: #FF0000;
}
 
#pageDescription.muted a
{
color: #FF70AA;
}

This will produce this:

colour.webp

Breaking it down...

So the first bit of that code:

Code:
#pageDescription
{
color: #FF0000;
}

Turns the text only red.

The second part:

Code:
#pageDescription.muted a
{
color: #[COLOR=#000000]FF70AA[/COLOR];
}

Turns the link colour pink.

EDIT: NINJAAA
 
Top Bottom