I'm using a premium theme and want to remove the heavy underline beneath my links. It does not give me an option to do so in settings. This is what it looks like:
I find it a bit much and too overbearing. I've tried different CSS codes and I can't seem to find one that will remove it. Note that it's not the typical link underline either, as you can see it's a little lower than most and is also very heavy.
Is there anyone that is familiar with CSS that can assist? :)
Thanks so much,
Jen
Join the Discussion
Write something…
kmer6
Premium
Happy Friday to you Jen. I am not sure if the underline can be removed from your link in your Theme or not, but I'm hoping all your links are not 'per your example', click "here". You are loosing major inner links SEO if they are not text links (links should either be to a post title or keyword).
I hope you are able to solve the underline issue in your Theme. Good luck,
Ken
I hope you are able to solve the underline issue in your Theme. Good luck,
Ken
PeterVX
Premium
It looks like someone went to some trouble making it that way. If you look at the CSS code, somewhere it should a line that starts with 'a.' (without the quotes - an a and a period, followed by another word) then a space and then some text enclosed by braces: { ... }. There may be several lines like that. If you can copy them and private text them to me, I may be able to help.
smgib
Premium
The font of the text controls the thickness of the underline. What I mean is if your font is thick or bold so will be the underIine on the link if it's the same font used. I hope that makes sense.
If you want to do away with the underline you use something like this;
a:link { text-decoration: none; }
Just make sure you know what you're doing before changing. Also keep a backup copy of the original css code before changing in case you have to revert backward. :-) Good Luck, Susan :-)
If you want to do away with the underline you use something like this;
a:link { text-decoration: none; }
Just make sure you know what you're doing before changing. Also keep a backup copy of the original css code before changing in case you have to revert backward. :-) Good Luck, Susan :-)