Elemental theme body text colour won't change?

Permalink
Hi there I have made my website and it looks pretty good. However for some reason (probably CSS) I can change the paragraph text in every aspect BUT colour. The font the size the weight all work but the colour won't budge, WHY?

I'm guessing CSS is the answer. Can anyone tell me how to solve this so that the colour picker will work without me having to go into a LESS file every time I do a simple colour change. Really bugging me. At the moment I have a work around but it means having to manually adjust every block one at a time which at the moment with only three pages isn't a huge deal but as my site grows it will get very old very quick.

See my site here: http://www.johnstockton.co.uk/

 
WillemAnchor replied on at Permalink Reply
WillemAnchor
I'm not sure what you tried already, but with css, the most specific rule will 'win'. (except !important)

so you could try something like
div.ccm-page p {
color: rgb(151, 151, 151);
}

Or, without coding, use the Customize Theme options
http://anchor-ict.com/blog/concrete5-add-css-block...
sanchopanza77 replied on at Permalink Reply
Worked a treat. I didn't think of adding code in that box. I added a font and font size to your code and it worked great. Thank so much.