Viewing 5 replies - 1 through 5 (of 5 total)
  • Following is the class hiding your responsive menu button in style.css. May be you have customized in child theme

    #page > a#mobile-trigger {
        display: none;
    }

    replace “none” to “block”

    so it would be

    #page > a#mobile-trigger {
        display: block;
    }
    Thread Starter talhaswl

    (@talhaswl)

    Thank you for your support ?? it’s working now

    Thread Starter talhaswl

    (@talhaswl)

    now it’s shown on desktop site as well with regular menu on upper left ??

    Hello @talhaswl,
    Looks like the menu you have is not a responsive menu. I guess you have done some modifications by the creating child theme which is preventing the main menu from displaying on mobile. If you delete the toggle menu that is appearing on the desktop site and check the horizontal one on the mobile, the horizontal menu won’t appear. So, you can test on a fresh theme in your server [for test purpose] and see if it appears accordingly without any modifications.

    Thanks!

    For now you can use the quick solution which is using CSS for the menu that is appearing on desktop site. This will hide the toggle-menu on desktop site which is appearing now at the top.

    @media screen and (min-width:768px) (
    #mobile-trigger .fa-th-list{
    display:none;})

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Wen Corporate main menu not show on mobile’ is closed to new replies.