vburnham 0 Report post Posted January 27, 2012 I have seen that others have had similar problems but I can't seem to find the solution. In firebug this is what I have found is causing the problem: .main-nav .current-menu-ancestor a, .main-nav li.current-menu-ancestor ul a, .main-nav li.current_page_item a, .main-nav li.current-menu-item a, .main-nav li.current_page_parent a, .sf-menu li li, .sf-menu li li li { background: none repeat scroll 0 0 #F2F2F2; } .main-nav li a:hover, .main-nav .current-menu-ancestor .current_page_item a, .main-nav li.current-menu-ancestor ul a:hover { background: none repeat scroll 0 0 #F7F7F7; } ul.sf-menu ul li { border-bottom: 1px solid #FFFFFF; } When I test it in firebug I change it to: .main-nav .current-menu-ancestor a, .main-nav li.current-menu-ancestor ul a, .main-nav li.current_page_item a, .main-nav li.current-menu-item a, .main-nav li.current_page_parent a, .sf-menu li li, .sf-menu li li li { background: none repeat scroll 0 0 #000; } .main-nav li a:hover, .main-nav .current-menu-ancestor .current_page_item a, .main-nav li.current-menu-ancestor ul a:hover { background: none repeat scroll 0 0 #000; } ul.sf-menu ul li { border-bottom: none; } However when I placed this in the custom code area it doesn't override it and it keeps the gray there. Does anyone have a solution that they found? THanks! Share this post Link to post Share on other sites
catrina 103 Report post Posted January 27, 2012 Can you please post a link to your site? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 27, 2012 [url]http://proof.saamadesign.com/[/url] Share this post Link to post Share on other sites
catrina 103 Report post Posted January 27, 2012 I see no grey background color in the navigation but I do see grey text. Is it the grey text you're trying to change? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 27, 2012 When you click on one of the drop down menu items, the current nav page and all their subpages all of the sudden display a gray background. Share this post Link to post Share on other sites
catrina 103 Report post Posted January 27, 2012 Strange, I don't see that happening. Try this code: [code]ul.main-nav li.current_page_item {background-color: none;}[/code] Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 27, 2012 No go. I can't find that color any where in the css until I use firebug. Share this post Link to post Share on other sites
catrina 103 Report post Posted January 27, 2012 Hm, strange. Which browser are you using? I can't see it in Firefox for Mac. Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 27, 2012 Maybe its for PC. I test it in both firefox and ie. My client can see it which is the biggest problem. :( Share this post Link to post Share on other sites
Jenny 33 Report post Posted January 27, 2012 Use this: [code]/* TO MAKE THE ACTIVE MENU APPEAR LIKE THE REST */ .main-nav .current-menu-item a, .main-nav .current-menu-item ul li a:hover { background-color: #ffffff !important; color: #ff9c00 !important; } /*match to text/bg on hover*/ .main-nav .current-menu-item ul li a { background-color: transparent !important; color: #3f95c7 !important; } /*match to text/bg NOT on hover*/[/code] ♥ Jenny :: Web designer at Simple Mama (follow me at @simplemamacom) Check out Share Me, a social sharing add-on for DMS that is super simple to set up. Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 27, 2012 This just makes it so all of them do it now. But even when I change the colors they stay gray. Aarrgg! Share this post Link to post Share on other sites
catrina 103 Report post Posted January 28, 2012 Can you please post a screenshot of the nav bar with the grey boxes showing? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 28, 2012 It only does this when I click into one of the drop down menu items. [url="http://proof.saamadesign.com/wp-content/uploads/2012/01/gray_box.jpg"]http://proof.saamadesign.com/wp-content/uploads/2012/01/gray_box.jpg[/url] Share this post Link to post Share on other sites
catrina 103 Report post Posted January 29, 2012 Does it also show up when you hover over the drop down menu items? Please read the docs before posting. Please do not private message me unless I ask you to. Designer | Catrina Dulay Founder | Catrina and Mouse Share this post Link to post Share on other sites
vburnham 0 Report post Posted January 30, 2012 Only if a drop down item is the current page. If the current page is a parent menu item they appear normally. Share this post Link to post Share on other sites
kastelic 6 Report post Posted January 31, 2012 Try applying your background color to [code].sfHover a[/code] as well. That is the class that gets added to the top nav item when it or its submenu is being hovered over. Sometimes its hard to spot since its not there unless you're hovering over it. Share this post Link to post Share on other sites