How to put the text of the "add to cart" button in bold

Topic summary

Goal: make the “Add to cart” button text appear bold in a store theme.

Solution provided: edit the theme’s stylesheet (Edit code > Assets > theme.scss.css) and add a CSS rule targeting the button label selector .btn__add-to-cart-text with font-weight set to bold.

Technical note: CSS (Cascading Style Sheets) controls visual styling; the font-weight property defines text thickness (bold makes text heavier).

Artifacts: a screenshot was shared for context but the change is purely CSS-based.

Outcome: a clear, actionable fix was given; no alternative approaches or disagreements were noted.

Status: appears resolved with a straightforward CSS update; no open questions indicated.

Summarized with AI on February 13. AI used: gpt-5.

How to put the text of the “add to cart” button in bold

Hi @Tommy171 , go to edit code > assets > theme.scss.css and add this:

.btn__add-to-cart-text{
font-weight:bold;
}