On my home page when I click the “hamburger” the dropdown menu appears and the word “home” is underlined. How do I get rid of this even when I am hovering over the home button?
You need to find the CSS selector for the link and then add the property"text-decoration: none"
Examples:
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }
