I have just started making a wp-site.
I have a small problem with the menu though; I want the main menu to stay active while your hovering the children. For example, when you hover “Undersida 1” under “Hem”, I want “Hem” to keep its backgroundcolor.
You can solve your problem with the following change in your CSS:
you should use “li:hover a” instead of “li a:hover”:
The reason this should work is that even when u are on the sub-menu li:hover is still considered as active stylesheet but not “li a:hover”.