As Ontonagon County is an option in a WP Custom Menu, you need to assign it a custom CSS class, and style for that class, since it will indeed have an A tag as that is what the Nav menus create.
My suggestion: At the top of the WP Custom Menus page, open up Screen Options and put a check in the CSS Classes box. This creates a new field on each menu option where you can assign special classes to an individual list item (LI tag) within WP menu. Add a class named something like no-link
this allows you to create CSS like
.menu-reports-container li.menu-item.no-link > a, .menu-reports-container li.menu-item.no-link > a:hover {
text-decoration: none;
color: black; (use any color code you want)
cursor: default;
}
Then on any menu item you don’t want to look like a link, assign it the no-link class in the menu CSS Classes box.
It is possible other CSS styling will override some of those settings. the easiest way to resolve that – there are three settings there – if one or two work and one or two don’t, add !important on the lines of the ones that don’t work. like this
text-decoration: none !important;
Best not to use the !important unless you find you need it.
Your stylesheet may interact with this additional CSS code in such a way that it will require a little more tweaking. Can’t tell til it is live.