Hello, I want to have only hyperlinks in paragraphs underlined on hover and have used the following code to achieve this throughout the site.
.site a:hover {
text-decoration:underline;
}
.site .menu-item a:hover {
text-decoration: none;
}
How do I then remove the resulting hyperlink underline on hover for all buttons? And can I also remove this on header tags?
Thank you!