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

    Hi Kriesi team,

    I’ve finally managed to make social icons visible on the mobile version, so to accomplish that I had to activate the main menu social icons, but I really want them hidden. To do so I tried the following code, but it didn’t work at all:

    @media only screen and (max-width: 767px) {
    #header_meta .social_bookmarks {
    display:none !important;
    }
    }

    Could you guys pls help me out with this one?

    Thanks a lot beforehand.

    Cheers,

    h

    #1297853

    Hi Harold,

    Can you try this CSS code instead:

    @media only screen and (min-width:768px) {
      #top nav .social_bookmarks {
        display: none;
      }
    }

    Best regards,
    Nikko

    #1298091

    Hey Nikko,

    It did work. Great thanks. However, I’d like to have both the secondary and main menu right-aligned if at all possible, pls?
    A screenshot of how misaligned they look has been attached.

    Thank you in advance.

    Regards,

    h

    #1298109

    Hi Harold,

    Thanks for the screenshot, please replace the last code I gave with:

    @media only screen and (min-width:768px) {
      #top nav .social_bookmarks {
        display: none;
      }
    
      #top .avia-menu.av-main-nav-wrap.av_menu_icon_beside {
        padding-right: 0;
        margin-right: 0;
      }
    
      #top #avia-menu #menu-item-2568 a {
        padding-right: 0;
      }
    }

    Best regards,
    Nikko

    #1298117

    Fantastic!… Looking smarter. Thank you, Nikko.

    Best regards,

    h

    #1298126

    Hi Harold,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Hide social icons in main menu of desktop version’ is closed to new replies.