can anyone help me remove this space?
emotiv.ro
just add this css it will be fixed. theme.css or base.css
.cart-item__options:empty,
.product-option:empty {
display: none;
}
.cart-item {
margin-bottom: 0;
}
hm…tried to put this in my base.css but not working. tried refresh incognito etc after saving but nothing. looks the same… ![]()
Hey @danny0103
Follow these Steps:
- Go to Online Store
- Edit Code
- Find theme.liquid file
- Add the following code in the bottom of the file above </ body> tag
<style>
.cart-drawer .cart-item {
padding-bottom: 0 !important;
margin-bottom: 0 !important;
}
.cart-drawer .cart-item__error {
margin-top: 0 !important;
}
</style>
RESULT:
Hope that helps! If it did, a Like and Marking it as Solution goes a long way and helps others find the fix faster too.
Best,
Moeed
not working either. or in factr it helps a bit but… there’s still way too much empty space
100% working
table.cart-items tbody tr:not(:first-child) {
margin-top: -5px;
}
adjust the value as per need
that’s awesome. thank u so much. works like a charm
1 more question… only if anyone knows and it’s not too hard to implement it.
how could I move the quantity to the right, under the price… this way i could save way more space Screenshot by Lightshot
#CartDrawer .cart-item__quantity-wrapper {
justify-content: flex-end;
}
try this
it looks like this.
i would need it to be where the red box is


