Bootstrap dropdown tab color

Permalink
I am using the standard Bootstrap navbar.
I have one submenu on the navbar but when I trigger the submenu to open, the parent item has a light grey background.
Chrome tells me the class is li.dropdown open
I have tried altering several of the items in the bootstrap.css without success 9 even creating a separate class in my style.css) but nothing seems to work.

Any ideas please?

trixiemay
 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi trixiemay,

What is the address of your website?
trixiemay replied on at Permalink Reply
trixiemay
www.hayes-interantional.co.nz/concrete5-8.1.0/index.php
MrKDilkington replied on at Permalink Best Answer Reply
MrKDilkington
@trixiemay

The element li.dropdown.open does not have a background color set. Its child link has the background color set.
bootstrap.css
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}
ob7dev replied on at Permalink Reply
ob7dev
Have you tried clearing concrete5's cache?