I am trying to make a menu bar with sub sub menus. When I hover over one of the sub sub menu links, I want the sub menu parent of that sub sub menu to change background colors.
Simplified form of my menu.
<ul id="menu-bar">
<li><a href="index.html">Home</a></li>
<li><a href="test.html">Test</a>
<ul>
<li><a href="test1.html">Test 1</a>
<ul>
<li><a href="test1a.html">Test 1 A</a></li>
<li><a href="test1b.html">Test 1 B</a></li>
<li><a href="test1c.html">Test 1 C</a></li>
</ul>
</li>
<li><a href="test2.html">Test 2</a></li>
<li><a href="test3.html">Test 3</a></li>
</ul>
</li>
</ul>
When I hover over the Test 1 A link, I want the Test 1 link to change backgound color. I don't think I can do this with CSS
If it helps any, I am using an active class for the active link.
Thanks in advanced.