• Is there something other than ‘.storytitle’ that controls or overrides the title of my posts? I’ve tried to change the color of the title post for over an hour, and it just sits there…I think it’s taunting me… my test site is http://www.operationexodus.org

Viewing 5 replies - 1 through 5 (of 5 total)
  • H3.storytitle is what controls it.
    edit these:
    .storytitle a {
    text-decoration: none;
    color: blue;
    }
    .storytitle a:hover {
    color: red;
    }

    Thread Starter colt_45

    (@colt_45)

    still cant make it work…what I ended up doing, and seems to respond is…
    ‘#content a {
    text-decoration: none;
    color: #294A82;
    }
    #content a:hover {
    color: #EF3939;
    }’
    it’s a brutal hack…but it works. Now if I can get it to validate I’ll go with it.

    Are you sure that you and we are looking at the same CSS ?

    Thread Starter colt_45

    (@colt_45)

    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?

    Try clearing your cache before you reload the page. I have had a situation when I changed my header graphic and it would not show up on the page until I cleared my cache.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I change color of Post Title?’ is closed to new replies.