Hi,
I need to change the bg color and font for the DROP DOWN part of the menu ONLY. not the menu itself.
http://optizign.org/sitepreview/personaltouchdental.com
Thanks!
Hey optizign13!
This will do it (add it to Quick CSS):
#menu-main-menu .sub-menu li a {
background: #FFF;
color: #261233 !important;
}
Regards,
Josue
Thanks! how would I change the font?
Hi!
You can add the font-family property o it:
#menu-main-menu .sub-menu li a {
background: #FFF;
color: #261233 !important;
font-family: "Georgia";
}
Cheers!
Josue
thanks! one more thing….how to I change the color of the hover link/active link in drop down?
Hi!
Adding this, another selector:
#menu-main-menu .sub-menu li:hover a {
background: red;
color: white !important;
}
Regards,
Josue
thanks! last thing! what is the code for making the font size bigger for drop down?
Hi!
That would be font-size:
#menu-main-menu .sub-menu li a {
background: #FFF;
color: #261233 !important;
font-family: "Georgia";
font-size: 16px;
}
Best regards,
Josue