Hi everybody,
the problem with the responsive WP Menu in THEME TWENTY ELEVEN is solved.
Click on the link
“WPR Menu”
tab “General Settings”
in the space “Elements to hide in mobile” you have fill in;
.nav,#access
Because the name of the menu in theme twenty eleven is,
<nav. id=”access” role=”navigation”></nav>
You can find it in the HEADER.
NEXT !!!;
click on the link “style” and then “editor”
scroll a bit lower till you find;
/* =Menu
————————————————————– */
below this you will find several of this;
#access {
scroll down till you find;
#access ul ul {
-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
box-shadow: 0 3px 3px rgba(0,0,0,0.2);
display: none;
float: left;
margin: 0;
position: absolute;
top: 3.333em;
left: 0;
width: 188px;
z-index: 99999;
}
By z-index: you will find a low number.
Change this in a high number like; z-index; 99999;
If you leave it a low number, the menu will disapear if you scroll down.
With a high number the WP Menu bar stays on top and always visible.
Succes,
Jacob H. van de Pol