I used the following code to underline my links on hover, but not the main menu. Anyway I now find the title in my accordions are being underlined when clicked on, can you tell me the code so that accordions do not get underlined. I assume it would be text decoration: none; I am just not sure what the first part is, maybe .site .accordion a:hover ? is that correct?
.site a:hover {
text-decoration:underline;
}
.site .menu-item a:hover {
text-decoration: none;
}