Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #971970

    Main menu in Footer - Mobile View - Many lines
    Hello,
    Is it possible to hide the Main menu in the Footer (socket) only for Mobile on Portrait View?
    Or, is it possible to improve the way it looks when the menu items are taking many lines? (please see image – Mobile – Portrait view)

    #972216

    Hey IngeniumCanada,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #972338

    Hello Victoria,
    Here is a link to my Development Site:

    Thanks for your help!
    Helene

    #972442

    Hi,

    Try adding the following to quick css:

    /* Portrait */
    @media only screen 
      and (min-device-width: 320px) 
      and (max-device-width: 568px)
      and (-webkit-min-device-pixel-ratio: 2)
      and (orientation: portrait) {
    footer #avia3-menu{
    display:none;
    }
    }

    Best regards,
    Jordan Shannon

    #972468

    Thank you very much Jordan! It’s working perfectly!
    Helene

    #972482

    Hi,

    Great I’m glad I was able to help. If you need anything else, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Main Menu in Footer – Mobile – Possible to Hide or Improve layout?’ is closed to new replies.