I hope so, I’m new at this. color would not respond to h3 or ‘.storytitle, so what I did was bypass the ‘.storytitle’ by wrapping a /*….*/ around .storytile, and then adding a class to #content as follows…
#content {
background: transparent;
border: solid 1px blue;
margin: 10px 10px 0px 10px;
padding: 0px 10px 0px 10px;
}
#content a {
text-decoration: none;
color: #294A82;
}
#content a:hover {
color: #EF3939;
}
I realize its a really ugly hack, but I didn’t know what else to do. No matter what I tried, color would not respond to the Post Title. Is what I did kosher?