Is this link highlight possible to do with css?

Posted in: Newspaper
Post count: 242
Post count: 20688

Hi,

It is possible but it depends where and to what you want it to apply. If those are simple paragraphs you can use some thing like this

p {
border-bottom: 3px solid red;
}
p:hover {
background-color: red;
color: white;
}

Result without hover – https://www.screencast.com/t/u4owcmF778
Result on hover – https://www.screencast.com/t/6ne2qCnk
You can find more about the hover selector here – https://www.w3schools.com/csSref/sel_hover.asp
Thanks

Post count: 242

Hi Simon

Sorry I didn’t explain very well

I mean just for inline hyperlinks – always underlined but hover/highlight effect when hovered/selected

Best wishes

Pat

Post count: 20688

Hi,

Then just use the a tag for the hyperlinks in the code provided above. Also if you want them to display like this only in the post content for example, just add the post content class before the a tag, or identify the classes used with your browser inspector – https://www.screencast.com/t/tNLy0UcHxhttps://www.screencast.com/t/Pe8IdPqGZl In the link I provided above you can see the different states of the links – https://www.screencast.com/t/dBCnvHaEgV5 Here is a tutorial about using the browser inspector to create custom code – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ and add in in Theme panel->Custom css

Thanks

Post count: 242

Thank you that’s really helpful – much appreciated

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.