Underlined links

Posted in: Newspaper
Post count: 224

Hello;

Kinda need help with a little CSS modification.

I need to underline links by default instead of on hover only

Thanks

Post count: 23312

Hi,

You will have to use a bit of CSS code and place it in Theme panel->Custom CSS area.

The code is ->

a {
text-decoration:underline;
}

The result -> http://screencast.com/t/aneEv0jYY

Thanks.

Post count: 224

Only links inside the post (internal and external links within the article)

Post count: 23312

Hello iamkingsleyf,

Try the code below ->

.post a {
text-decoration:underline;
}

Thanks.

Post count: 224

Hello;

Thanks but can i exclude the meta tags (dates, author bio,category and tags) from being underlined

Post count: 22421

Hi,

Please use this code:
.post a {
text-decoration:underline;
}
.entry-category a, .td-post-author-name a, .td-post-next-prev-content a, .td-author-name a, .td-author-description a{
text-decoration:none!important;
}

Thanks.

Post count: 224

Thanks looks good now

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