Presidio: Change background color and link color of dropdown menus

In the Presidio theme, the primary menu (the menu either inline with or below the logo, depending on your setup) may feature dropdown menus. As an example, view our demo site here, and hover over the category “Style.” Some users may wish to alter the gray background color of these dropdown menus. To do so, use the code below and change the hex code colors to your preferred color scheme!

Here’s a short demo showing what this change looks like:

And here’s the Code Hack you need to implement it:

/*
Add this code in your Dashboard by going to Appearance > Customize > Additional CSS. Copy and paste everything below!
*/
/*
This changes the background color of the dropdown menu box. Change the #000000 to the hex code color of your choice.
*/
.primary-menu > li > .sub-menu {
background: #000000;
}
/*
This changes the background color of the links in the dropdown menu, which naturally inherit the default gray color.
Change the #000000 to the hex code color of your choice.
*/
.primary-menu > li > .sub-menu > li {
background: #000000;
}
/*
This changes the color of the text links in your dropdown menu.
Change the #ffffff to the hex code color of your choice.
*/
.primary-menu > li > .sub-menu > li > a {
color: #ffffff;
}
view raw style.css hosted with ❤ by GitHub