0

I'm working on a Joomla template, I've changed the top level menu colors to match our logo but I'm having trouble locating where the change in color is coming from when you mouse over the dropdown menu. I set the top level menu item to hover using firebug so it stays open though when I inspect the drop down elements I cannot see from where the color change is coming from. I've set hover states on each subsequent div and li and that did not trigger the change in color so I'm baffled as to where the color change comes from. This is the webpage I'm working on http://www.webchild.com.au/search-results

benikens
  • 163
  • 3
  • 12

2 Answers2

0

You have a Javascript updating the color for the class hover-box1, check that...

jtheman
  • 7,421
  • 3
  • 28
  • 39
0

I think it your case menu backgroud color is an image located here:

http://www.webchild.com.au/templates/yoo_mellow_July2012_Wider/css/variations/../../images/variations/bluegrey/menu_level1_item.png

Adam Bubela
  • 9,433
  • 4
  • 27
  • 31
  • I was able to change the top level menu background colors by locating them in bluegrey.css and editing the images it pulls through for the sides, however the dropdown menu doesn't seem to rely on the same styles and it is the one I am having troubles locating. – benikens Nov 07 '12 at 23:12
  • I see that javascript is dynamically changing inline style. This seems to be a commercial component, so you must have some administrator management where you can change the color. – Adam Bubela Nov 07 '12 at 23:17
  • Yeah on the admin end it lets me choose between predefined color combos but not individual colors. Luckily I just located the .js file that calls the color changes so I think I've found my answer! – benikens Nov 07 '12 at 23:23
  • Did you check template settings too? – Adam Bubela Nov 07 '12 at 23:32