Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #488885

    Hi, I tried to make display socket menu in the phone and tablet view with this code:

    @media only screen and  (max-width: 767px) {
    .responsive #socket .sub_menu_socket {
    display: block !important;}
    }   
    

    But it display menu (two items: one for privacy policy and the other for terms and conditions) only at 479px (see screenshot below):
    screenshot correct footer menu

    At 480px until 767px instead of menu there is a block with nothing inside but a useless vertical space (see screenhot):
    screenshot issue footer menu
    Can you help me please? Thanks

    #489319

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 767px) and (min-width: 480px) {
    .responsive #socket .sub_menu_socket {
        display: block !important;
        clear: both;
    }
    }

    Cheers! 
    Josue

    #490203

    Thanks Josue, now i get the menu in tablet view but not in the phone view…

    #490208

    Hi!

    Please change Josue’s code to following one

    @media only screen and (max-width: 767px) {
    .responsive #socket .sub_menu_socket {
        display: block !important;
        clear: both;
    }
    }

    Regards,
    Yigit

    #491591

    Thanks, it works. Why @media only screen instead of @media screen?

    #491595
    #496998

    Thanks. You can mark as resolved. Great support!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Footer menu in tablet view not be displayed’ is closed to new replies.