Viewing 4 replies - 1 through 4 (of 4 total)
  • in css, a or a:link is the normal link color

    :hover is the colour it turns if your mouse is pointed over the link (hovering)

    :visited is the color of a link after you have visited that link once

    Thread Starter viniciusmunich

    (@viniciusmunich)

    In my code looks like this:

    . entry-title a {
         font-size: 40px;
         line-height: 44px;
         letter-spacing:-0.5px;
         color: # a0410d;
         text-transform: uppercase;
         text-shadow: 0 1px 1px rgba (0,0,0,0.2);
         font-family: fonte_eleuza;
    }

    But the color is still gray: /

    Sure is….

    wonder if the overall body style is taking precedence?

    body,
    input,
    textarea {
        font: 12px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #444;
    }

    Could tinker with changing that

    Otherwise, perhaps the above code needs to be more specific….

    .post . entry-title a {
         font-size: 40px;
         line-height: 44px;
         letter-spacing:-0.5px;
         color: # a0410d;
         text-transform: uppercase;
         text-shadow: 0 1px 1px rgba (0,0,0,0.2);
         font-family: fonte_eleuza;
    }

    or something. I’m kind of running blind here, as I don’t have any developer tools at work. You could try using firebug on firefox, or the dev tools in chrome to see where the rule is coming from that is causing that to remian grey

    Thread Starter viniciusmunich

    (@viniciusmunich)

    Thanks for all the help, but did not work ..

    But I managed to solve, in a very simple sign 🙂

    Just added “!Important” in front of “color: # a0410d,” and everything is working again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problem when changing the color of post title’ is closed to new replies.