Hi,
anyone can tell how can I can set the submenu from the page "Progetti" opened? Now it opens only on mouse over. Thank you!
http://www.forumwellnessclub.it/tmp/progetti.html
Printable View
Hi,
anyone can tell how can I can set the submenu from the page "Progetti" opened? Now it opens only on mouse over. Thank you!
http://www.forumwellnessclub.it/tmp/progetti.html
Because you have your sub-menu set to display none:
So it will only display when you hover over the parent li based on this part of your cssCode:div#menu li ul {
display: none;
}
Code:#menu li:hover ul{
display:block;
background:none;
font-size:15pt;
line-height:13px;
float:right;
}
Thank you, this helped me a lot!