ngoeke
December 15, 2015, 11:49am
1
Hi,
I must’ve messed up my CSS previously to remove underlines from some of the links. Now I have to underline all my links by hand.
I found an option to underline ALL links (including the ones in the header menu, tags, etc.), but I don’t like that.
I just want all of the links in my text (posts and pages) to be underlined automatically, both in the text and when highlighted (hover).
Is there an option to enable this?
Thanks so much!
movin
December 16, 2015, 8:52am
2
Hi @ngoeke ,
I hope you are well today and thank you for your question.
You can try achieving this by adding the following CSS code in the Custom CSS option of the latest version of Sparkling theme on the below path.
Admin Area -> Appearance -> Customize -> Sparkling Options -> Other -> Custom CSS
.entry-content a {
text-decoration: underline;
}
Best Regards,
Movin
ngoeke
December 17, 2015, 6:04am
3
Thanks, this helps! One thing though: Now also the “Read More” buttons are underlined, they weren’t before, any way to separate this and not have those underlined?
No worries if not!
movin
December 17, 2015, 8:41am
4
Hi @ngoeke ,
To achieve this try using the following CSS code instead of previously provided code.
.entry-content a {
text-decoration: underline;
}
.entry-content .btn.btn-default.read-more{
text-decoration: none;
}
Best Regards,
Movin
ngoeke
December 17, 2015, 9:07am
5
Perfect! You are great! Thanks!
movin
December 17, 2015, 12:55pm
6
You are most welcome here