Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #482823

    Hi guys! How are you?

    a question : i wolud like to choosde which element will be visible about secondary menu on mobile version, because there are too many links and they are moving down the layout of the main page.

    Any suggestion?

    Thanks a lot!

    Cheers

    Mario

    #482927

    Hey Mario!

    We can give you some CSS to hide them. Let us know exactly which links your trying to hide.

    Or if your just wanting to hide them all then use this CSS.

    @media screen and (max-width: 767px) {
    #avia2-menu { display: none !important; }
    }

    Best regards,
    Elliott

    • This reply was modified 9 years, 3 months ago by Elliott.
    #487182

    Hi Elliot,

    I would like to display on the mobile version only this link:
    – my account (is possible only with an ICON?)
    – i would like to hide social icons on mobile

    Thanks for your help!

    cheers
    Mario

    • This reply was modified 9 years, 3 months ago by Mario.
    #487314

    Hi!

    Remove this from your custom CSS.

    #avia2-menu {
      display: none !important;
    }

    And add this instead.

    #avia2-menu > li:nth-child(2) {
      visibility: visible !important;
    }
    #avia2-menu > li {
      visibility: hidden;
    }

    Regards,
    Elliott

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