Can't Remove Underline on Menu Item Text

The menu items on this page are underlined on hover and I can’t find out why. I would like them to not do that. https://www.ahg-nationwide.com/new-home/

Hi @stuartrowens,

Thank you for writing in, a text-decoration: underline; for a:hover CSS rule is coming from your custom bootstrap in the child theme.

Add this to Theme Options > CSS to override that.

	a:hover,
	a:focus {
		text-decoration: none;
	}

Please be reminded that we can not really provide support for 3rd party scripts and that includes bootstraps. Please contact the author or consult the documentation if you have a further issue with your bootstrap.

Cheers!

Thank you!

You are most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.