[Resolved] Mini Cart Blank

Home Forums Support [Resolved] Mini Cart Blank

Home Forums Support Mini Cart Blank

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

    Couple of things I have been meaning to ask since updating the GP3

    1. Mini cart now only shows the subtotal, no items?

    Disabled optimisation plugin and still does it.

    2. I have a trustpilot widget in the bottom footer, this no longer shows correctly and half of it gets cut off on mobile devies

    Thanks

    #1518779
    David
    Staff
    Customer Support

    Hi there,

    try adding this CSS:

    .dropdown-click .main-navigation ul li.wc-menu-item:hover ul {
        display: block;
    }

    Let me know – looks like a bug.

    #1518785
    Ash

    Thanks David, That indeed fixes it.

    #1518786
    David
    Staff
    Customer Support

    Sorry missed the Trust Pilot – can’t see this on your site now ?

    #1518806
    Ash

    It’s in the footer bar? This is what it looks like on mobile

    screenshot

    #1518821
    David
    Staff
    Customer Support

    I am seeing this CSS:

    .footer-bar > .widget {
        display: inline-block;
        margin: 0 30px;
    }

    Not sure where its coming from as its cached.
    If thats custom CSS then try wrapping it in a media query like so:

    @media(min-width: 769px) {
        .footer-bar > .widget {
            display: inline-block;
            margin: 0 30px;
        }
    }

    That will remove the margin on small devices.

    #1518841
    Ash

    I remember now it was for this exact reason I added that code, removed it don’t seem to need it now. Thanks David

    #1518888
    David
    Staff
    Customer Support

    Glad to hear that!

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