Archived topic
On hover background link
1 reply · Started by ammgbr on June 16, 2022
Viewing posts 1–2 of 2
Hello,
Is there an easy solution to have different background colour on hover for external & internal links?
Hi there,
you can use some CSS like so:
/* style all content links */
.entry-content a:hover {
background-color: #f00;
}
/* style external links aka do not include your domain */
.entry-content a:not([href*="https://allinop"]):hover {
background-color: #0f0;
}
This archived topic is closed to new replies.