Hello all - I am having trouble finding which code and where to put it in order to change the color on the product page. It’s currently white and need to change it to black.
Theme: Dawn version 2.5.0
I appreciate any help on this. Thanks!
Hello all - I am having trouble finding which code and where to put it in order to change the color on the product page. It’s currently white and need to change it to black.
Theme: Dawn version 2.5.0
I appreciate any help on this. Thanks!
Consider sharing a link so that other can look into the .css
Hello,
This is CSS style to start with, then it depends your product page’s own CSS classes (easy to learn and change).
Have fun,
You could search this line at your base.css theme file
.quantity__input {
color: currentColor;
}
and replace current color for color that you want, additionally you can also change the size and other properties of the text
Add this code to the bottom of base.ccs, it should change the color of the price on product pages.
.price.price--large.price--show-badge .price-item.price-item--regular {
color:#000;
}
@Nick_Marketing thank you so much