Thanks for the nice and clean theme, loving it!

I have a problem with the menu, under the menu I have a input select box visible. The regular menu is hiden on smaller screen as expected but this selector box is always visible.

thanks

You can have a look at : din1110.info

CommentFileSizeAuthor
tablette.jpg12.45 KBlemac889
full size.jpg20.1 KBlemac889
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

lemac889’s picture

Issue summary: View changes
lemac889’s picture

The div class "selector" is not around the select element inside de div id "navigation" the
element is directly inside de "navigation" div.

This is what I have in my site :

<nav id="navigation" role="navigation">
      <div id="main-menu"></div>
      <select></select>
</nav>

Compare to this in the demo site :

<nav id="navigation" role="navigation">
      <div id="main-menu"></div>
      <div class="selector">
          <span>Menu</span>
          <select style"opacity:0"></select>
      </div>
</nav>

Does somebody know where the div selector is suppose to be created?

web226’s picture

Fixed by using Jquery update configured to use Version 1.7

I had this same problem and saw your comment that the theme demo site was fine.
I checked the theme demo source code and noticed that it was using jquery 1.7
I installed the Jquery update module and configured it toVersion 1.7 like the demo site and the dropdown select menu went away.

web226’s picture

Assigned: Unassigned » web226
Status: Active » Closed (fixed)

Fixed per my last comment

mattbk’s picture

For what it's worth, is it proper to require users to adjust Jquery compatibility for this theme to work?