Change Font of Shopping Cart Drawer Heading

Hi!

How do I change the font of Shopping Cart in this drawer?

I’d also like to capitalize the C so it’s “Shopping Cart”.

Store link: https://vtze9uhjodrhx4fb-12859847.shopifypreview.com

Thank you.

Hi @pjk3635 ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/custom.css->paste below code at the bottom of the file:
.drawer--cart .drawer__title {
    font-size: 26px !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Best regards.

Hi @pjk3635 ,

You can try follow the instruction below:

  1. Go to Online Store → Theme → Edit code.
  2. Asset → /custom.css paste code below into end of the file.

Ex:

.drawer--cart .drawer__title {
    font-size: 30px !important;
    text-transform: capitalize !important;
}
.drawer--cart .drawer__title.h2.page--title span {
    font-family: 'Queens-Regular' !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
Best regards.