Hi,
I’d like to edit the Buy Now button in the coffee banner image at the top: https://empiricalwater.com/
How do I:
-
Increase the text font size?
-
Increase the thickness of the button outline?
Thanks
Hi,
I’d like to edit the Buy Now button in the coffee banner image at the top: https://empiricalwater.com/
How do I:
Increase the text font size?
Increase the thickness of the button outline?
Thanks
Check this one.
From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
Find the theme that you want to edit and click on “Actions” and then “Edit code”.
In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
.banner--desktop-transparent .banner__box a.button.button--secondary {
font-size: 25px;
}
.banner--desktop-transparent .banner__box a.button.button--secondary:after {
box-shadow: 0 0 0 calc(2 * var(--buttons-border-width) + var(--border-offset)) rgba(var(--color-button-text), var(--border-opacity)),
0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!