Links a.hover and removing underline text decoration
Hello - I was able to change the color of my links in the menu, content and buttons, but can't seem to get the a.hover to change on those elements. I found where it should work but it is not executing. I am also trying to remove the text-decoration: underline; to text-decoration: none; in the content area, but that too is not executing. My site is in maintenance mode, but will be live shortly - either tonight or in the morning. Hoping you can help me with this :))
Here is the code i inserted in the custom css for the on hover:
a, .view-more a, .entry-meta a:hover, .entry-meta a:focus, .content-area .entry-title a:hover, .content-area .entry-title a:focus, .archive-blog-wrapper .read-more a, .news-ticker-title a:hover, .news-ticker-title a:focus, .featured-content-wrap .entry-title a:hover, .featured-content-wrap .entry-title a:focus {
color: #ff3399;
text-decoration: none;
font-weight: bold;
}
I used text-decoration: none; in the a css as well (everything is working except text-decoration):
a, .view-more a, .entry-meta a:hover, .entry-meta a:focus, .content-area .entry-title a:hover, .content-area .entry-title a:focus, .archive-blog-wrapper .read-more a, .news-ticker-title a:hover, .news-ticker-title a:focus, .featured-content-wrap .entry-title a:hover, .featured-content-wrap .entry-title a:focus {
color: #ff3399;
text-decoration: none;
font-weight: bold;
}
Lastly i changed the buttons with this css (is working except on hover):
.btn-transparent, .ctnewsletter .ct-newsletter-wrap #subbutton, #nav-below .nav-links a, #nav-below .nav-links span.current, .wp-pagenavi a, .wp-pagenavi span, #infinite-handle span button {
border-color: #e8554e;
color: #e8554e;
}
I'm probably missing something obvious, but not finding it. Thank you! :))