Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #113740
    Juzer
    Participant

    (1) The secondary menu is not pulling up and showing the contents in mobile view.
    How do we fix this please?

    (2) http://www.tristarcctv.com – We have WOOF Filters enabled, but in the mobile view, the filters show up all the way at the bottom of the page. How do we bring them to the top – in Mobile view.

    Thank you much for your help

    #113756
    Mahesh
    Participant

    @jyamani53:
    1. The menu is working fine on our server. May be some of the plugin you’ve installed it conflicting. Please try disabling the plugins one by one and check if it resolves the issue.

    2. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media (max-width: 990px) {
      #content .wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        /* optional */
        -webkit-box-align: start;
        -moz-box-align: start;
        -ms-flex-align: start;
        -webkit-align-items: flex-start;
        align-items: flex-start;
      }
    
       #content .wrapper #main {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
      }
    
       #content .wrapper .sidebar-primary {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
      }
    
      #content .wrapper .sidebar-primary .widget {
        width: 100%;
      }
    }
    
    

    Regards,
    Mahesh

    #113757
    Juzer
    Participant

    Thank you Mahesh. You were referring to the secondary menu, correct? The primary menu is working fine in mobile view, on the top left. The secondary menu link shows up on the top right, and it slides out when clicked, but with an empty container. Nothing inside.

    Thank you for the code; I’ll test it out shortly and revert back with confirmation.

    I appreciate your help

    #113761
    Mahesh
    Participant

    @jyamani53: Yes, I was referring to the secondary menu. I checked your site, and yes, its empty container on yours. Must be because of some plugins, the same is working fine on our server.

    Regards,
    Mahesh

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Secondary Menu in Mobile & Moving WOOF Filters to the top in Mobile’ is closed to new replies.