How to Change the Drop Down Sub Menu

I’m not sure what the correct terminology is but, in my menu I have an link called “Enhancements” if your browsing from a computer, when you click on it with a mouse, just a big white box opens up and you cant see the other sub menu items. www.djbobcarpenter.com

  1. How to I lower the submenu box below the Enhancement so it doesnt cover the word enhancements.
  2. How do I change the color of the background of the submenu and the fonts.

Thank You

Hi,

  1. You can adjust it under Theme Options > NAVBAR > NAVBAR TOP HEIGHT (PX)

  1. YOu can add this in Theme Options > CSS
/* submenu background */
.masthead-inline .x-navbar .desktop .sub-menu {
    background-color: red;
}
/* submenu text color */
.desktop .sub-menu a {
    color:#fff;
}
/* submenu text hover color */
.desktop .sub-menu a:hover {
    color:#fff;
}

Hope this helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.