Topic summary
A user needed to make the text “See product inclusions and specs below” more prominent on their product page gallery section by adjusting font size and color.
Solution provided:
- Navigate to Shopify admin → Online Store → Themes → Actions → Edit code
- Open the CSS file in the Assets folder (base.css, style.css, or theme.css)
- Add custom CSS targeting the product gallery paragraph:
.product .product__gallery p {
font-size: 20px;
font-weight: 700;
padding-top: 20px;
}
Outcome: The CSS modification successfully resolved the styling issue. The user confirmed it worked as intended.