Where it says “Image Banner” and the text underneath I need to change the color + Shop Button. I tried Solid button label and Accent 1, nothing works. Please help ! Thank you.
Hi i can help you change it successfully without error message me now
Hi @VladaG95 ,
Thank you for reaching out to the Shopify Community!
Please share your store URL here so that we can check and provide a solution to you.
Thanks & Regards,
Ahsan ANC
Here’s the link
please share preview password.
https://45w6sar362szrdbr-66858189018.shopifypreview.com
Does this preview link work ?
You can try this code
- Go to Online Store-> Theme->Edit code
- Asset-> base.css ->paste the below code at the bottom of the file.
.banner__heading.h1{
color: red;
font-size: 40px;
}
.banner__text.body{
color: green;
font-size: 20px;
}
.banner__buttons .button {
background: black;
color: white;
}
This works ! Thank you so much! Do I need to type different names of the colors if I would like to try other options ?
Yes you can enter the color name or Hexa code for any color like ( #e2e2e2 )
The first one is for the heading, the second one is for the description, and the third one is for the button.
Great ! I appreciate you help.
To change the color or to remove the border of the button what would be the steps for that ?
Again, thank you !
this is the code to remove the border
.banner__buttons .button--secondary:after {
box-shadow: unset !important;
}
It works ! Thanks again for your help:)

