I have poked around in the Appearance>Graphene Options>Display>Color Options. But the font color options aren’t set there. I have attempted to change the color manually through the Custom CSS field, but no luck.
Here is the URL of the page I’m trying to alter: http://renegadeswpb.com/events/
I am attempting to set the color of the h2 text as #1f97d1. So using firebug, I determined that the text that reads “Click on “more info†to the right of an event to see more details.” near the top of the page is called .comment-entry h2. So I added the following code to the custom CSS but with no luck.
.comment-entry h2 {
color: #1F97D1;
}
That text is still grey instead of the blue/green/aqua that I was trying to make it.
The peculiar thing is, when I add that code to the CSS temporarily in the firebug side area, it makes it the right color. When I add it into the custom CSS area, it does not.
For reference, here is what I have in the custom CSS area
h1 { text-decoration: underline; color: #fff; }
p {
color: #1F97D1;
}
.comment-entry h2 {
color: #1F97D1;
}
.page .post-title {
display: none;
}
.hc_rse_title p {
color: white;
margin: 0;
padding: 10px 25px;
}
table td, table th, table tr {
border: 0 solid #CCCCCC;
color: white;
font-family: arial;
font-size: 120%;
}
h4 {
color: #1f97d1;
}
body {
color: #1f97d1;
}