How to change font size & color of FAQ block link text

Permalink
I'm trying to add faq block and find the faq link text defaults to blue font. I'd like to change to larger font of different color. I've tried adding the following custom CSS to my theme and find it's changing the font size but not changing the font color. What's wrong?

div.ccm-faq-block-links a {
    color: red;
    font-size: 20px;
}

 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi kasperskyusa,

The link colors were not changing because there was a more specific rule controlling the color.

This selector will change the link color:
div.ccm-page div.ccm-faq-container .ccm-faq-block-links a {
    color: red;
    font-size: 25px;
}