Dear community,
I want to make some adjustments to my store. I’d like to know the following things:
- How do I change the typograhpy of the PRODUCT TITLE in CART DRAWER to bold?
- 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:
- Go to Online Store->Theme->Edit code
- 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.