Hi,
I want to change to change the product title colour from blue to black on the quick add modal which pops up on the collection page. I’m using the Dawn theme.
I added code to the end of base.css to get the grey colour on the variant pills so I’m assuming I could add something similar for product title - can anyone help?
Thank you!
1 Like
Hello @ElinParry
Please provide your store URL, so I can review it and provide a solution
Hi @ElinParry
This is Henry from PageFly - Landing Page Builder App
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at bottom of the file → Save
.quick-add-modal__content-info .product__title h2.h1 {
color: black !important;
}
Hope that my solution works for you.
Best regards,
Henry | PageFly
Hi @ElinParry
Try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
h1, h2, h3, h4, h5, .h0, .h1, .h2, .h3, .h4, .h5 {
color: black !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!