Viewing 3 replies - 1 through 3 (of 3 total)
  • For some reason, your theme has two separate styles that control how links appear:

    #article p a {
        color: #8db529;
        font-weight: bold;
    }

    and

    a {
        text-decoration: none;
        color: #444444;
    }

    I wonder if this was an oversight or an intentional design decision by the theme developer. Anyway, if you’d like all links to be highlighted in green, either get a custom CSS plugin or use your theme’s built-in custom CSS option (if it has one, of course) and put:

    a {
        color: #8db529;
        font-weight: bold;
    }
    Thread Starter mookseandgripes

    (@mookseandgripes)

    Thanks, that works. The only thing is that now there are some hyperlinks that I don’t want to look green and bold — sorry!

    For example, the widgets, the post titles, the dates, and comments, etc. I’d like to make it so just the hyperlinks in the text conform to this bold, green style.

    I definitely appreciate the help. Any suggestions for this part?

    Okay. Change the code I gave you to

    #article a {
        color: #8db529;
        font-weight: bold;
    }

    That way, all hyperlinks within the main body text will be green and bold and all other hyperlinks will remain the same.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Links and how they are highlighted’ is closed to new replies.