• Hello,

    The Link color in my posts appears in RED for some reson (maybe because my header is in red). Could someone please tell me how can I change it to another color (say blue). I know it’s supposed to be easy, but I can’t figure this out…

    You can see it right here: https://anxiety-attack-treatments.com/

    thanks

    Ron

Viewing 3 replies - 1 through 3 (of 3 total)
  • Um, I only see blue links…
    did you already resolve this?

    Thread Starter ronhelor

    (@ronhelor)

    Wow, you’re right…But here is the thing – I do see all blue links–when I look at the blog with an Explorer browser…when I use my beloved FireFox, I see the links in the post in red, and the links in the sidebar are in blue…ant ideas on how to solve this?

    The color of your links is determined by the CSS file (style.css), and in particular by the .entry tag. Links show up differently when they are unclicked, visited, active, or hovered over.

    You need to add/alter the css tags for the other variations of the a tag in order for the colors to be changed. Do a google search on “css links” to find out how.

    At first glance, I see link color definitions in these tags. There may be more:

    .entry a:visited

    .entry a:active

    etc. etc.

    also look at these tags in your css:

    a, h2 a:hover, h3 a:hover {
    color: #06c;
    text-decoration: none;
    }

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing Link Colors in the post’ is closed to new replies.