x

Navigation Menu opactiy

How do I change the opactity on the navigation menu drop down background colour? One of my header pictures is quite busy and when I use the drop down menu, it's hard to read the drop down menu as the background colour is quite faint. I'd like to make it less transparent.

Any ideas?

2,146 Views
Message 1 of 8
Report
1 Best Answer

2,060 Views
Message 9 of 8
Report
7 REPLIES 7
Square

That can be changed with some CSS tweak - are you familiar with that at all, @CathB?

2,092 Views
Message 9 of 8
Report

I've tweaked things a bit in the past, but not overly familiar with it. I didn't know which of the lines of the code to change. Wasn't immediately obvious to me. 

2,077 Views
Message 9 of 8
Report
Square

Ok, no worries. Can you post a link to your site? I'll take a look.

2,075 Views
Message 9 of 8
Report

Best Answer
2,061 Views
Message 9 of 8
Report

Thanks for help too
2,058 Views
Message 9 of 8
Report
Square

Try this in Settings > SEO > Header Code, it should fix it on the live site to be less transparent but keep the mouseover effect:

<style>
#wsite-menus .wsite-menu li a
{
	/* non hover state */
	background: rgba(255, 255, 255, 0.9) !important;
}
#wsite-menus .wsite-menu li a:hover
{
	/* hover state */
	background: #e3e3e3 !important;
}
</style>
2,030 Views
Message 9 of 8
Report

Thanks so much Adam. I'll give it a go. 

Regards, 

Cath 

1,993 Views
Message 9 of 8
Report
This thread has been archived and locked. Please start a new thread if you would like to continue the conversation.