How to underline links in blog posts?

Posted in: Newsmag
Post count: 3

I’d like links to be underlined in blog posts. I can’t find a setting regarding links in Theme panel – Fonts

Post count: 6535

Hi

Unfortunately the theme don’t have an option to make the links underlined but you can achieve that by adding this css in theme panel > custom code > custom css: http://screencast.com/t/8zuxDhOYP

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

Let me know how it goes.
Thanks!

Post count: 3

Works great thanks

Post count: 54

Hi! I need this but the other way around: lines to appear when hovering over hyperlinks. Is there a code for this please? Thanks

Post count: 35449

Hi alessandro_tpp,
For this you can try this custom css:
.tdb_single_content a:hover, .td-post-content a:hover{
text-decoration: underline!important;
}

You need to set the code in the theme panel > custom code> custom css.
I hope this will help you!
Thank you!

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