XF 1.2 Click to expand text colour

OldCoals

Active member
Quite styling question, how do I change the text colour of the "Click to expand" text and the foot of a quoted section?

Thanks!
 
That didn't seem to work I am afraid, this is the code I entered.

Code:
bbCodeQuote .quoteContainer .quoteExpand {
color: #000000; !important;
}

What did I do wrong?
 
That didn't seem to work I am afraid, this is the code I entered.

Code:
bbCodeQuote .quoteContainer .quoteExpand {
color: #000000; !important;
}

What did I do wrong?
Are you referring to the actual text that tells you to "Click to expand....".
If so, then use
Code:
.bbCodeQuote .quoteContainer .quoteExpand.quoteCut {
color: #000000;
}
 
Last edited:
Your CSS was also invalid. The !important statement has to occur before the semi-colon.
Picky Picky... :ROFLMAO:
I didn't even pay attention to that since I figured what he was wanting was the text done and concentrated on giving that for his color choice shown. @Slin, you do need to use the ";" as the LAST (and only) one in each line of your CSS definitions that you do.
If you need to use !important, then that will be the last instruction given prior to the ";".
 
Top Bottom