Hi everyone, I would like to address two issues that do not allow me to have maximum experience in navigation of my site from mobile devices.
Please look at the screenshots:
The logo of my site is not large, the size of the sides is to the millimeter with the image (the logo can not be reduced more than that)
Hey lock255!
Are you just wanting to hide those areas highlighted in red?
If so then add this to your custom CSS.
@media screen and (max-width: 500px) {
#header_meta, .cart_dropdown { display: none !important; }
}
Regards,
Elliott
I do not want hide. I want to optimize touch-Mobile. So give proper blank space between them. As stated by Google 5mm between objects clickable
Hey!
I don’t think that’s going to matter at all but you can give them some more space with this CSS.
@media screen and (max-width: 500px) {
.social_bookmarks > li {
margin: 0 10px !important;
}
}
Regards,
Elliott