1 comment

  1. I have been through your site and found easiest solution for you at this moment.

    please remove this top css from your class this class .site-navigation-toggle, .menu-header means :

    .site-navigation-toggle, .menu-header { position:absolute;top:50%;transform: translateY(-50%);}
    

    this should be like this

    .site-navigation-toggle, .menu-header { position:absolute;transform: translateY(-50%);}
    

    just removed top:50% and everything will be ok..

Comments are closed.