How to get cart page quantity selector and price total aligned?
When my product title is longer the quantity selector and total price will move and are not aligned anymore.
A user is experiencing alignment issues on their cart page where the quantity selector and price total shift out of alignment when product titles are longer.
Proposed Solution:
.cart__template .cart__items__totalCurrent Status:
How to get cart page quantity selector and price total aligned?
When my product title is longer the quantity selector and total price will move and are not aligned anymore.
Hello @michelle012
Go to online store ----> themes ----> actions ----> edit code ----> theme.css
add this code at the end of the file and save.
@media only screen and (max-width: 767px) {
.cart__template .cart__items__total {
padding-top: 0px !important;
}
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
thankyou for your response. I tried your selection and it worked with products with a longer title. Only it reversed to the product with a shorter title.
hope you can help me find another solution.