• Hi,
    I think this is a simple question but I can’t figure it out. I would like the entry title of my blog posts to be a different color from the rest of the links on the page. When I tried to define a color in .entry-title it didn’t work. Is it because I have put
    a:link{
    text-decoration: none;
    color:#ffaa00;
    }

    a:hover{
    text-decoration: underline;
    color: #3399ff;
    }

    a:visited{
    text-decoration: none;
    color:#ff9955;
    }
    at the top of the css and its overriding everything? How do I change it? Thanks in advance for your help!

    Dillon

Viewing 6 replies - 1 through 6 (of 6 total)
  • A link to your site would help but you could try using .entry-title a.

    Thread Starter implau

    (@implau)

    Thanks!
    here is a link
    do you mean like

    .entry-title a.{
    color:#333333
    }

    I just tried that and it didn’t work…
    Dillon

    Just checked the site and

    .entry-title a.{
    color:#333333
    }

    should definitely do it. But make sure you add it to the bottom of your stylesheet.

    Thread Starter implau

    (@implau)

    Thank you Esmi

    hmm. I added it at the bottom and Yes it does change the color when I view the entry’s own page, but I was hoping it would appear that color when I view the main page, when acts as it is a link. Since I have defined a link color for the whole site is this something that can be overridden? Is there a command for just link color on entry title?

    On the main page the entry must be wrapped in a different class to .entry-title.

    Thread Starter implau

    (@implau)

    aha. Thank you. I’ll try to figure out how to do that

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘entry title color question, newbie’ is closed to new replies.