You may need to add some custom CSS (Customize -> Additional CSS). I'd recommend that you use the Chrome developer tool (https://developer.chrome.com/devtools) to figure out the right selector to use for applying a custom CSS rule. For example: let's say you want to change the H1 color on our demo http://themes.opendept.net/hemma-elegant/
How do I change the font colour of the text on the homepage?
Hi Semmyd,
You may need to add some custom CSS (Customize -> Additional CSS). I'd recommend that you use the Chrome developer tool (https://developer.chrome.com/devtools) to figure out the right selector to use for applying a custom CSS rule. For example: let's say you want to change the H1 color on our demo http://themes.opendept.net/hemma-elegant/
https://cl.ly/ldOG
.page-id-4 .is-text-light h1 { color: red; }
The .page-id-4 selector is needed in case you want to apply that change only to that specific page. Hope that helps.
Thanks. Will give it a go.