Archived topic
Mini Cart Blank
7 replies · Started by Ash on November 5, 2020
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
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.
Thanks David, That indeed fixes it.
Sorry missed the Trust Pilot - can't see this on your site now ?
It's in the footer bar? This is what it looks like on mobile
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.
I remember now it was for this exact reason I added that code, removed it don't seem to need it now. Thanks David
Glad to hear that!