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

    Hi there
    For the Header Social Icons – I have it set to: Display in main header area but they don’t show on mobile – how do I get the social icons to show on the mobile header area?

    Cheers
    Natasha

    #1440485

    Hey xfacta,

    Thank you for the inquiry.

    The icons are hidden on mobile devices by default, but you can display them back with this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header .social_bookmarks,
      .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
      }
    }

    Best regards,
    Ismael

    #1440489

    Hey Ismael

    Great thanks so much. How can I make the icons slightly bigger though on mobile?

    Cheers
    Natasha

    #1440492

    Hi,

    Include this code inside the css media query to adjust the size of the icons:

      #top .social_bookmarks li {
        width: 40px;
        margin-right: 4px;
      }
    
      #top .social_bookmarks li a {
        width: 40px;
        line-height: 40px;
        min-height: 40px;
        font-size: 24px;
      }

    Best regards,
    Ismael

    #1440494

    Thanks so much :-)

    #1440499

    Hi,

    Great, I’m glad that Ismael could help you out. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

    #1440560

    You can close – thanks again :-)

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Header Social Icons for mobile’ is closed to new replies.