How to change nav dropdown color?

This might be a silly question, but how do I change the backgroundcolor of the dropdown menu in the navbar? 1: https://gyazo.com/dd55e39d7142fd347c854d8ab359cb54 2: http://prntscr.com/fpahgk

The marked area on the 2nd picture is the area I'm trying to change the background color of. I was thinking white.

For #2

@media (max-width:767px) {
  .navbar-nav .open .dropdown-menu {
    background-color:#fff;
  }
}

Remove media query if you want it at all times not just mobile.

I'll have to explain how you get it later though :)

Saj

The way I did it was.

  1. Overview pane, expand Dropdown and select Menu
  2. expand STYLES pane
  3. the first rule is .navbar-nav .open .dropdown-menu
  4. click the triple stacked dots on the right and select Copy To styles.css
  5. the duplicate is above and can be edited
  6. remove the other properties to be cleaner
  7. edit the background-color

Saj