- This topic has 2 replies, 2 voices, and was last updated 9 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Epik Theme Support › Changing font colors
Hi can anybody tell me where and how I can change the font-colors of the H1/H6 in the css it says it is under 03A, but I don’t know what to change or add there.
Thank you
You’re probably going to have to use a new selector or class.
something like :
body h1, body h6 {color: #ccc;}
or with a class:
-in the html: <h1 class=”mycolor”></h1>
-then in the style.css: .mycolor {color: #ccc;}
Hope that helps
Thanks , I will try and hope it works…