Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1359114

    Is there a problem displaying social buttons in mobile applications ?

    I added them to my header (size 46px) but they only show up on a desktop. I also have them listed at the bottom of my home page as a large bar, and also in my product page (using a woocommerce hook) and I have the same problem not displaying on mobile.

    my website is http://paulozzello.com

    Paul

    #1359139

    Hey paulozzello,

    Thank you for the inquiry.

    The social bookmarks or icons inside the header is hidden on mobile devices by default, but you can display them back using this css code.

    @media only screen and (max-width: 479px) {
      .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
        margin-top: 0;
        margin-left: 20px;
      }
    }
    

    This will push the mobile menu and search icon to the left closer to the site logo.

    Best regards,
    Ismael

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