Hi, I am playing around with the csshover template. I see that it comes with a popout menu for the 1st child, how can I add a second and 3rd child popout as well? I have been playing in the css file but just cant get it working. Is there another file I need to edit?
Any help would be appreciated

This is what i was using so far:
#nav .menu li:hover ul, div#.menu li a:focus ul, div#.menu li.subMenu ul {
display: block;
}
div#.menu li ul ul {
display: none;
}
div#.menu li:hover ul ul, div#.menu li.subMenu ul ul {
display: none;
}
div#.menu li:hover ul ul ul, div#.menu li.subMenu ul ul ul {
display: none;
}
div#.menu li:hover ul, div#.menu li li:hover ul, div#.menu li.subMenu ul, div#.menu li li.subMenu ul {
display: block;
}
div#.menu li:hover ul, div#.menu li li li:hover ul, div#.menu li.subMenu ul, div#.menu li li li.subMenu ul {
display: block;
}