Hi there, I am using swift ray and am trying to change both the font colour and style. I have managed to alter font style from instruction in an older post by adding css code in theme style. But the colour change is not occurring. I want the headers 1-6 to be blue. The code I have typed is: h1, h2, h3, h4, h5, h6{ font-family: Quicksand, sans-serif; colour: #1d8fab;; } p, fieldset{ font-family: Open Sans, sans-serif } Please could you advise me on this matter thank you in advance
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: h1, h2, h3, h4, h5, h6{ font-family: Quicksand, sans-serif; color: red ! important; } p, fieldset{ font-family: Open Sans, sans-serif; } In place of "red" you can put your color or color code. This will solve your issue.