Site logo

Archived topic

Hyperlinks

7 replies · Started by Janine on January 25, 2018

Viewing posts 1–8 of 8

Hi, guys!

Previously, Leo provided me this CSS:

.inside-article a {
font-weight: bold;
}

It works beautifully, but I don't I only want hyperlinks to be bolded. I don't want my post titles or meta entries and links to be bolded. How can I accomplish this?

Thank you!

I also don't want Read More to be bolded. Thank you!

Perhaps try this instead:

.entry-content a {
    font-weight: bold;
}

Thank you, Tom. That worked!

Now that I've added this CSS rule. When I try customize hyperlinks hover and visited in the Customizer, nothing happens.

What CSS rule(s) do I need to control the behavior of hyperlinks hover and visited? Thank you!

Hi there,

Like this:

.entry-content a:hover,
.entry-content a:visited {
    font-weight: bold;
}

Thanks, Leo. That worked too.

No problem :)

This archived topic is closed to new replies.