So I'm trying to change the background color on a dropdown menu.
http://www.vintageandretro.com.au/1940s-south-california-tourist-cushion/
Look at the quantity drop down. I want the background to be a different color. I tried changing the div.selector
in the custom.css file but it still overrides it back to white.
div.selector {
width: 200px;
color: #444440;
font-size: 14px;
background: #000000 url(../../BrideToBe/images/theme/icon_arrow_down.png) no-repeat right center !important;
border: 1px dashed #d4d3d3;
height: 28px;
line-height: 28px;
min-height: 28px !important;
margin: -1px;
padding: 3px 0 !important;`
}
To test, I've even removed the url to the arrow down icon, and it still appears. As if it is somehow being overridden.
Thanks!