I am helping a friend get her shop up and running. I can’t figure out which theme controls the text links under the add to cart and buy bow buttons. I want it to be purple instead of the yellow.
Does this require a specific code to accomplish changing just that text a different color? If so can anyone help me with that? I circled the area I need a different color.
Hi @sfoster95 ,
May I suggest to update code these steps:
- Go to Store Online-> theme → edit code
2.Assets/base.css
3. add code below to end of file
.share-button .share-button__button svg path{
fill: purple;
}
.link.product__view-details,
.share-button .share-button__button {
color: purple;
}
Thank you this works partially. When I use purple or mediumpurple it works but when I try to use her color code 4D15B9 it still shows yellow. Neither the purple or mediumpurple are the right shade they are too red. Any other suggestions? Do I have to put the # in front of the hex code?
You should add # before color like code below:
.share-button .share-button__button svg path{
fill: #4D15B9;
}
.link.product__view-details,
.share-button .share-button__button {
color: #4D15B9;
}
That worked perfectly thank you so much.


