Jump to content
Sign in to follow this  
spencerbrasfield

How To Change Navigation Hover Indicator

Recommended Posts

spencerbrasfield

How to I change the hover indicator (not sure what to call it) from being a block to another design? Ultimately, I'd like it to look more like an underline rather than a block. Of course, I want the active page to be underlined with a slightly different color than the other pages I am hovering over. Thank you.

Share this post


Link to post
Share on other sites
kastelic

Something like:

	main-nav li a:hover {
	background: transparent !important;
	border-bottom: 1px solid blue;
	}
	

Also need to add a padding or height rule to adjust it 1 px less to compensate for the extra border.

Share this post


Link to post
Share on other sites
spencerbrasfield

Where should I insert this code? Custom CSS section? Php file? Thanks.

Share this post


Link to post
Share on other sites
kastelic

Custom Code -> Custom CSS or if you have the base child theme activated you can put it it platformbase/style.css

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×