Okay so I have gone back to read up on how to create the
css menu. After spending the whole afternoon (literally!) of consistently testing out the my code and from the tutorial I think it is finally working. I have tested on firefox and IE 7 it seems to be doing what I wanted now.
solved my questions from before.
Now I am facing something that I think just adding one more selector would solve the problem but couldn't figure out what..
here is the link
http://www.humanbee.com/testing/index.php
If you hover over 3 -> 3.1 -> 3.1.1 -> 3.1.1.1, you'll see that 3 and 3.1 are highlighted but when you get to 3.1.1 and onto 3.1.1.1, 3.1.1 is no longer highlighted. I've noticed the difference between 3.1.1 and its predecessors is that 3.1.1 is actually a link as to just text.
I have altered
div#menuv li a:hover{
color: white;
background-color: #6495ED;
}
to
div#menuv li:hover, div#menuv li a:hover{
color: white;
background-color: #6495ED;
}
to create the highlighted (activated? not sure if i can call that) text.
any suggestions?
thanks