I have added an extra wp_nav_menu to the side on the front page here
http://industri.opperud.com/ny/
but I can't get the submenus to work, I want them to show up as a "dropdown" (except its out to the side) beside the parent, as they do here: http://middagshjelpen.no
(...and its a bit of a rush... :/ the client cut the development time by half, and have requested changes after changes after changes making the deadline even harder to meet... :( )
Pixel Coder answers:
This is an easy fix if I understand what you are asking correctly.
Within your themes style.css on line 469 you should have this
#access ul ul {
box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
-moz-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
display: none;
position: absolute;
top: 97px;
left: 0;
float: left;
width: 140px;
z-index: 99999;
}
Remove the following line.
left: 0;
Replace with.
right: 20px;
That should bring it "inside" the layout.
Torstein Opperud comments:
ah, well, that was a nice touch (I'll give a bonus for that one), but its not what I meant
The problem is the menu on the left hand side, where there <em>should</em> pop out a submenu to the right on mouseover... see the picture