If you scroll down to the Rediscover your Tea image banner, how can the Buy Now and Learn Stuff button width be edited to be less wide?
Thanks
If you scroll down to the Rediscover your Tea image banner, how can the Buy Now and Learn Stuff button width be edited to be less wide?
Thanks
You can set a max-width by navigating to assets → base.css and adding a CSS rule like this:
.banner__buttons .button {
max-width: 150px;
}
Alternatively, you can add the code to the Custom CSS section inside the theme editor.
Hello @empiricalarby ![]()
Inside Shopify Admin, you can go to Edit theme code, open file base.css and add this code at the bottom
.banner__buttons .button {
width: 12rem !important;
margin: auto !important;
padding: 0 !important;
}
The result
Hope that helps!
Awesome, thanks. How do I make these buttons sit one above the other instead of side by side? Thank you