So I want to change the colors of the text and the shop now button within my image banner. I am using the dawn theme. If anyone is able to help me with the coding I will be extremely happy and eternally grateful ![]()
1 Like
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
1 Like
Thank you KetanKumar,
my site URL is www.usefullifeproducts.com
1 Like
@UsefulLifeProdu , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > base**.css** and paste this at the bottom of the file:
.banner__heading{
color: #ccc !important;
}
.banner__buttons a{
background: #fff !important;
color: #000 !important;
}
#ccc = text color (HEX)
#fff = button background color
#000 = button text color
Kind regards,
Diego
thanks for url can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/section-image-banner.css->paste below code at the bottom of the file.
.banner--desktop-transparent .button--secondary {
background: #c12226 !important;
}
.banner__heading {
color: #000 !important;
text-shadow: 0px 0px 10px #fff !important;
}
