How can I increase the font size on my cart page?

I’m having a difficult time increasing the font size on my standalone cart page. For some reason, the font is smaller on this page than anywhere else on my site. I’m using Prestige, as I have for other store in the past, but this time the demographic is older so the text needs to be adjusted. It’s currently 13px where it should be 16px.

@DWTK Please share your website URL and password if any. I will check and provide a solution. Thanks and Best Regards

PM’d!

@DWTK

Please share your website URL and password if any. I will check and provide a solution here.

Thanks!

@DWTK

Please add the bottom of your assets/theme.css file

@media screen and (min-width: 641px){
.CartItem__Meta, .CartItem__Remove, .QuantitySelector__CurrentQuantity { font-size: 15px !important; }
}

Hope this helps.

Thanks!

1 Like

Thanks so much! It doesn’t appear to have affected the mobile version - is there something I can do to correct that?

1 Like

@DWTK

Try this for mobile.

@media screen and (max-width: 641px){
.CartItem__Meta, .CartItem__Remove, .QuantitySelector__CurrentQuantity { font-size: 15px !important; }
}

Hope this helps.

Thanks!

1 Like