I want to make the title bold and make it a tad bit bigger. I want to make the price display #1AFF00 and I want to make the “add to cart” a bright red so that it stands out more. Any css or html code to make these changes? Thank you in advance.
1 Like
Hi @TPOfficial
Please, share your store URL. Thanks!
Can I pm you it? I’d rather not post my store on the forum.
Thanks for the info, 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:
.complementary-products__container .full-unstyled-link {
font-weight: 900;
font-size: 15px;
}
.complementary-products__container .price>* {
color: #1AFF00;
}
.complementary-products__container .quick-add__submit {
color: red;
}
-
And Save.
-
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
1 Like
Thank you!

