Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #472697

    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)

    • This topic was modified 9 years, 4 months ago by lock255.
    #473266

    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

    #473488

    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

    • This reply was modified 9 years, 4 months ago by lock255.
    #473841

    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

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