Underline Clickable Post Links

Posted in: Newspaper
Post count: 13

I’d like to make sure my post links are underlined. How can I make this happen?

Post count: 623

To make post links underlined, add following code to custom CSS

/* This will make all links in the post underlined by default*/

.td-post-content a {
text-decoration: underline;
}

/*Adding this code will show an underline when you take mouse pointer over the link*/
.td-post-content a:hover {
text-decoration: underline;
}

Hope this will help, thank you for your understanding.

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