Tagged: , ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #377775

    Hi,

    I’m working on a Woocommerce webshop atm for a client, and most things are getting there.
    All products, and store/cart/checkout pages are all there. Products are published in the background to test the shop, but the shop pages itself are still set to concept.

    So I got an email from the client about the cart icon showing up next to the mobile ‘hamburger’ menu on the left.
    It seems somewhere the css isn’t correctly processed. It’s easily tested by scaling the webbrowser on the PC screen as well. At roughly 760px the cart icon pops in from the left.
    This is why I hadn’t seen it yet, all my mobile devices have highre res screens….

    I removed it by hacking the css and adding a display:none, but it would be nice to have this working as behaved. There shouldn’t be a cart icon when there’s nothing added to the shop yet. Mobile screen or not ;-)

    Or I am completely off in the wrong direction here.. ;-)

    cheers,

    rob

    #378393

    Hey RobWu!

    could you please post a link to your website showing the issue?
    I think it’s normal behavior that a cart icon is showing up, doesn’t matter if there are products in it or not.

    Cheers!
    Andy

    #378412
    This reply has been marked as private.
    #379244

    Hey!

    Now I can see the issue. Use this in Quick CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top .cart_dropdown {
    right: -60px !important;
    margin: -23px 0px 0 0 !important;
    }}
    

    Regards,
    Andy

    #379359

    Thanks! Worked like a charm:-)

    Slowly getting very hands on with all this ;-)

    cheers!

    rob

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Bug? Shopping cart icon on mobile screen showing, but page not published yet…’ is closed to new replies.