A space to discuss online store customization, theme development, and Liquid templating.
how do i change these colour of the font from white to #2f261e and the same for the outline
Solved! Go to the solution
This is an accepted solution.
Hey @dumbl3d00r
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
a.button.button--secondary:after {
box-shadow: unset !important;
}
a.button.button--secondary {
color: #2f261e !important;
border: solid 2px #2f261e !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed
This is an accepted solution.
Hey @dumbl3d00r
Follow these Steps:
1) Go to Online Store
2) Edit Code
3) Find theme.liquid file
4) Add the following code in the bottom of the file above </body> tag
<style>
a.button.button--secondary:after {
box-shadow: unset !important;
}
a.button.button--secondary {
color: #2f261e !important;
border: solid 2px #2f261e !important;
}
</style>
RESULT:
If I managed to help you then, don't forget to Like it and Mark it as Solution!
Best Regards,
Moeed