Home Forums Pro Themes University Hub Pro Main menu missing on mobile

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #196667
    Christian Nasulea
    Participant

    We have just switched back our website to the University Hub Pro theme, updated to the latest version. The theme works well on desktop browsers but the menu does not show up at all on mobile browsers.

    The website is https://istorie.unibuc.ro

    If we analyze the website on a desktop browser, in inspect mode, with a mobile size, the menu works.

    #196685
    Psink
    Keymaster

    @whimsmedia, While inspecting your site we have found that a piece of CSS code is responsible for the mobile burger menu not showing.

    this is the code responsible for hiding the burger menu
    @media only screen and (max-width: 1000px) {
    #main-nav {
    display: none;
    }
    }

    Reference screen record
    https://www.awesomescreenshot.com/video/31441722?key=8a2d0572599a3a0f0f2d4f5e2a97198c

    You can remove this code if you have added somewhere in the site or you can override that piece of code by adding this code in the Additional CSS

    @media only screen and (max-width: 1000px) {
    #main-nav {
    display: block !important;
    }
    }

    #196711
    Christian Nasulea
    Participant

    Thank you for your help! That took care of the issue.

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.