Studio Theme- chaning color of text in buttons and background of info on product pages

  1. I am having some trouble figuring out how to change the color of the text in the buttons (add to cart, sizes, ect). I want my main text throughout the website to be white and also keep my button’s background white with a black text. When I try to change the color of the text, it changes it throughout the whole website instead of just in the buttons:( any advice?

  2. I also am having trouble figuring out how to change the background of the info on shipping as well as the return and exchanges on my product pages. (click the link here to see what I am referring to: https://bluemoon-swim.com/products/katrina-bikini-top ) please help!!

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset >theme.css and paste this at the bottom of the file:
.product-form__input input[type=radio]+label {
color: black;
}

Hi @BlueMoonSwim ,

Go to Assets > base.css and paste this at the bottom of the file:

#1:

.product-form__submit.button {
    color: #000 !important;
}

#2:

#shopify-section-template--15523059302590__multicolumn .multicolumn-card {
	background: #007aff !important;
}

you can change the color code to your liking.

Hope it helps!