- Hi community! I need to adjust/Center the subtotal word at the checkout page on mobile version. See photo and kindle advise. Thanks
1 Like
Hi, please try to add this code at the end of theme.css file and it should fix the problem
.cart-subtotal__price {
padding-left: 0;
}
Please add the following code at the bottom of your assets/theme.css file.
@media only screen and (max-width: 749px){
.hulkapps-cart-original-total{
display: inherit !important;
}
}
Hope this works.
Thanks!
