Hello,
How can I change the background color of a submenu link? On the page below, I’d love to change the background color of the two PHOTO sublinks from purple to something else.
http://www.thedavidbaron.com/wp/#
Thanks!
Jinhi
Hello,
How can I change the background color of a submenu link? On the page below, I’d love to change the background color of the two PHOTO sublinks from purple to something else.
http://www.thedavidbaron.com/wp/#
Thanks!
Jinhi
Hi Jinhi,
I hope you are well today and thank you for your question.
You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Shapely Options -> Other
#page .menu > li > ul li a:hover,
#page .dropdown-menu>.active>a:hover {
background: #000;
color: #fff;
}
Please change the color value in the above code to whatever you want to use by referring the following pages.
http://www.w3schools.com/html/html_colors.asp
http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp
Best Regards,
Movin