Hi @trixy546,
Hope you are doing good today 🙂
That is the RGBA color with 0.8 opacity being applied to the anchor tag. You can either remove the opactiy by adding following code in custom CSS section (if current theme provide that option) or by installing simple custom CSS plugin.
.main-navigation ul ul a{
background-color: rgba(255,255,255,1);
}
Try this one if above don’t work.
.main-navigation ul ul a{
background-color: rgba(255,255,255,1) !important;
}
You can also change the color by replacing the RGBA with solid hex color code.
Take care and have a nice day 🙂
Cheers, Sajid
Can you please tell me how to change the text color of the drop down menu?
Hello there,
Thanks for the info on changing the drop menu background from the opacity setting. That was helpful.
That being said, I am like @Sense4 and am requesting assistance in changing the drop menu font color as it is still difficult to read in it’s default color.
Website: http://www.blackbearacademy.com/
Many thanks.
Hi guys you’re GREAT. Thank you for helping other people.
@thornerthompson You can add your own CSS in theme.
/* Sub menu text color */
.main-navigation ul ul a {
color:red;
}
/* mouse on hover color */
.main-navigation ul ul a:hover {
color:green;
}
If you love “GREAT” theme, please write a review.
Ben,
Thanks again.