Something’s wrong with the Nav Bar
-
I have a CSS upgrade and the drop down menu of my nav bar is all screwed up. The custom color doesn’t show up. Any idea what’s happening?
-
Yeah – I have the same problem. I emailed support about it. Here is their response:
Yes, some of the CSS for the admin bar has changed. You will need to re-work your changes to match.
Here is an example which should make it pink…
#wpcombar {
background-color: #ff4fa7 !important;
border-color: #ff97cb !important;
}
#wpcombar .quicklinks a {
color: #f6c5d3 !important;
}
#wpcombar .quicklinks a:hover {
background-color: #f6c5d3 !important;
color: #f39 !important;
}
#wpcombar .quicklinks .menupop ul {
background-color: #ff4fa7 !important;
border-color: #ff97cb !important;
}Note the use of !important after the declarations.
Now I’ve made the changes to include the !important but mine still isn’t working. Perhaps somebody else can chime in on this.
-
I think I just found the info in my theme. I have another element that I had to change:
.quicklinks a:hover { background:#DCDCDC !important; color:#fff !important; }Hope that helps!
-
Hi Vivian,
I think our nav bars are the same. So, I’m just going to copy your CSS ;) Thanks a lot for your help. :)
- The topic ‘Something’s wrong with the Nav Bar’ is closed to new replies.