This is my store: https://charmente.com/products/migraine-relief-hathead-massager-gel-hot-cold-therapy-headache-migraine-relief-cap-for-chemo-sinus-neck-wearable-therapy-wrap
Topic summary
A user seeks to match the styling of a “Color” heading to their existing “Bundle & Save” heading on their Shopify product page. They’ve shared a screenshot showing the visual difference between the two elements.
Solutions provided:
-
First approach: Add CSS code to the
base.cssfile targeting.ast-container .aswithfont-weight: 400 !important -
Second approach: Navigate to
base.cssand add CSS targeting.legend.form__labelwithfont-size: 16pxandfont-weight: 700
Both solutions involve editing the theme’s CSS file through the Shopify code editor (Online Store > Themes > Edit code > Assets > base.css). The issue appears unresolved as the original poster hasn’t confirmed which solution worked or if the problem is fixed.
Hi @Simon159
Go to Online store > Themes > Edit code > Assets, open base.css file, add this code at the bottom
.ast-container .ast-vd-title { font-weight: 400 !important; }
-
Navigate to the code editor: Online Store → Themes → Edit code → base.css
-
Add the following CSS code to the end of the file:
legend.form__label {
font-size: 16px;
font-weight: 700;
}

