javascript - Bootmetro menu template -


Then I used a firebug to inspect part of the CSS that was applied to a drop down menu .

You can see here that a: hover: active is responsible for hover over the color. In this case boot subway has set it in blue color:

Enter image details here

Firebug shows that the CSS line The bootstrap.css on the responsible 2842 line was:

  .dropdown-menu li> A: Hover, .dropdown-menu li & gt; A: Focus, .dropdown-submenu: hover & gt; A {color: #ffffff; Text-decoration: None; Background color: # 0081c2; Double-repeat: repeat-x; Background image: Linear-gradient (bottom, # 0088 cc, # 0077b3); }   

However when changes the background-color: # 0081c2 if it is something different then it remains the same at the time of testing. Firebug shows that if I change the background color then it changes using firebug, but still it is not being applied when I manually apply it to the CSS file.

I tried to change all the settings to see if anything would apply and nothing happens:

  .dropdown-menu li & gt; A: Hover, .dropdown-menu li & gt; A: Focus, .dropdown-submenu: hover & gt; A {color: # 666666; Text-decoration: None; Background color: # 666666; Double-repeat: repeat-x; Background-Image: Linear-Slope (Below, # 666666, # 666666); } .dropdown-menu Active & gt; A, .dropdown-menu Active & gt; A: Hover {Color: # 666666; Text-decoration: None; Background color: # 666666; Double-repeat: repeat-x; Profile: 0; Background image: Linear-gradient (bottom, # 0088 cc, # 0077b3); }   

I did not understand whether a setting was finished or not and wondered if anyone could help.

It's possible that your browser keeps a css file cache so that you try to clear all Enable cache and reload.

Comments

Popular posts from this blog

excel vba - How to delete Solver(SOLVER.XLAM) code -

jsp - Google line chart x-axis shrinks on transition -

java - Reaching JTextField in a DocumentListener -