Viewing 2 replies - 1 through 2 (of 2 total)
  • Try this

    <style>
    option, select {
        background-color: red;
    }
    </style>

    Add the following to your Custom CSS panel:

    .dropdown-menu > li > a:hover,
    .dropdown-menu > li > a:focus,
    .dropdown-submenu:hover > a,
    .dropdown-submenu:focus > a {
      background-color: yellow;
      background-image: none;
      filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    }
    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
      background-color: yellow;
      background-image: none;
      filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    }

    Change yellow to what you want.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Dropdown Menu — need to change background color’ is closed to new replies.