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
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