How can I adjust typography and color settings in my online store?

Dear community,

I want to make some adjustments to my store. I’d like to know the following things:

  1. How do I change the typograhpy of the PRODUCT TITLE in CART DRAWER to bold?
  2. How do I change the QUANTITY SELECTOR colors (also when selected) in CART DRAWER and PRODUCT PAGE?

Website: https://coffee-chains-test.myshopify.com/?_ab=0&_fd=0&_sc=1

Password: owl

Theme: Motion

Hi @blcksoap ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css->paste below code at the bottom of the file:
.cart__product-name {
    font-weight: bold !important;
}

.js-qty__adjust:hover {
    background-color: black !important;
    color: white !important;
}

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