Hello,
I have an issue on my drawer cart when I add a product in my cart, a margin side is on the bottom and I can’t remove it. (you can see it on the second grey ligne before “total estimé” and it’s the same for everything after)
Does anyone know how to do this please?
Here is my website: https://1sk0ih-as.myshopify.com/products/4-in-1-skincare-wand-kit?pb=0
On mobile:
On computer:
The problem is the two bits of text above the cart totals. In English, this looks fine. But in French, the sentences are too long, and the text flows offscreen. Because of this, the rest of the section is allowed to flow offscreen.
Before fix:
After fix:
You can resolve this by adding CSS to the button element that allows this text to wrap.
.drawer__footer-head button {
white-space: normal;
}
Of course, this doesn’t look to great. Consider allowing the items to flow vertically on mobile.