Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #505095

    Hello kriesi team,

    First of all thanks for the great theme, keep up the good work!
    Second, I have two small problems on iPhone 5s device, maybe there is some easy fix..

    1) Shopping cart on home page is always showing, even if she is empty. Also the shopping cart goes over the logo (but I check on one android device, the shopping cart is not going over the logo)

    2) There where is copyright text, the text not fit one the screen

    #505265

    Hi frukts,

    1. Please try the following in Quick CSS under Enfold–>General Styling to align the:

    @media only screen and (max-width: 767px) {
    strong.logo img {
        max-height: 80px !important;
    }
    }

    Not sure if you want to hide the cart though?

    2. I can’t see the issue on my end, could you please send a screenshot of what you are seeing on your end?

    Regards,
    Rikard

    #505432

    Didn’t see any changes when I add this code, I remove it..

    #506299

    Hey!

    1.) Please remove browser cache or hard refresh the page after you add the code suggested above. You can also try this:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
        max-height: 50px !important;
    }
    }

    Adjust the max height value if necessary.

    2.) Add this code inside the media query above.

    #socket .copyright {
        float: none;
    }

    End code should be:

    @media only screen and (max-width: 480px) {
    .responsive .logo img {
        max-height: 50px !important;
    }
    
    #socket .copyright {
        float: none;
    }
    }

    Cheers!
    Ismael

    #506341

    Thank you Ismael, with this code it worked, I only change 50px to 60px.
    Is there also some easy fix for shopping cart, it still showing, even if she is empty.

    #506798

    Hey!

    You can try this:

    @media only screen and (max-width: 767px) {
      .responsive #top .cart_dropdown {
      right: -100px !important;
      }
      
      .responsive.html_visible_cart #top .cart_dropdown {
      right: 7.5% !important;
      }
    }

    Regards,
    Ismael

    #506844

    Thanks Ismael! You can close this topic.

    #506926

    Hi,

    Great, glad we could help :-)

    Best regards,
    Rikard

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Shopping cart is always showing on mobile, copyright text not fit on iPhone 5s’ is closed to new replies.