get rid of underlined links css twenty sixteen
-
Hello,
I am having trouble with getting rid of the underline on the link on the h2 line of this page (where it says “collaboration with jfaerie”) http://airammariazappaz.wordpress.com/jdraw
i have already tried these options in css–
.entry-content h2{text-decoration: none;}
.entry-content h2{border-bottom: 0px;}
.entry-content a{text-decoration: none;}
and
.entry-content a{border-bottom: 0px;}
but none of them have worked out for me
does anyone know what I can do to get rid of this? It seems like it might be somewhere in the javascript instead of css
The blog I need help with is airammariazappaz.wordpress.com.
Hi,
Can you try if this will work?
h2 a {
box-shadow: none;
}
h2 a {
text-decoration: none;
}
Try this code
Trying to remove underlines on text links in the main body of my pages, no luck.
text-widget a, entry-content a {
box-shadow: none;
text-decoration: none;
}
doesn’t work either. Any ideas?
Here’s how – it’s box-shadow, not text-decoration:
/* no link underline */
a:link {
box-shadow: none;
}
a:visited {
box-shadow: none;
}
a:hover {
box-shadow: none;
}
The topic ‘get rid of underlined links css twenty sixteen’ is closed to new replies.