Blog Titles White
Im having an issue where all of title text in my blog posts are white. No way to edit the title element. Does anyone know how to fix this?
Hi Brain,
Problem is that in your main.css line 108 you have a rule:
h1, h2, h3, h4 color: #FFF/*#7c7c7c;*/
This rule is setting white color to all your headings.
There is a two ways to solve the problem
1) Change this rule, it should set different color to all your headings
2) Create another rule at the bottom of your main.css. This rule will set black color only for your blog post headers
h1.sfpostTitle color: black;