Remove default link underline
-
Hello,
I have some internal links on a page, but cannot get rid of the default underline. Browser is Chrome; working on a PC. I’ve tried (in custom css):
/*–1st try–*/
a {text-decoration: none;}/*–2nd try–*/
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
/*–3rd try–*/
a {
border-bottom: none;
}
/*–4th tries–*/
tried various inline <style></style> solutions, and class=”intxt”, etc.The links I’m trying to affect are in a <p> on a page, not post or main nav. Cleared browser cache after each change.
Cheers–Patricia
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Remove default link underline’ is closed to new replies.