• Resolved michalc

    (@michalc)


    Menu on mobile devices doesn’t work for me. There is just a button “menu” which on click changes to “close”, but thera are no menu items visible. Any advice?
    Thank you!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Thread Starter michalc

    (@michalc)

    Since theme’s author haven’t responded, I had to resolve it myself. So if someone else needs the solution:

    1) add this to header.php:
    <script type=”text/javascript”>
    var $ = jQuery.noConflict();
    $(document).ready(function(){
    $(‘.navbar-header button’).on(‘click’, function(e) {
    $(‘.mainmenu nav.navbar-collapse’).toggleClass(‘show’);
    });
    });
    </script>

    2) add this to style.css:
    .mainmenu nav.navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    }

Viewing 1 replies (of 1 total)

The topic ‘Mobile menu’ is closed to new replies.