system
October 25, 2022, 11:09pm
1
Hello Shopify community
I tried to follow the instructions on this Shopify community website for changing both the Dawn theme banner button color and font color to black and if possible making it bold.
https://community.shopify.com/c/shopify-design/changing-the-color-of-the-image-banner-button-in-dawn/m-p/1437256#M378160
This is the link to my store: https://humanintuitionclothing.com/
and this is a screenshot of the button i want to change:
Thank you for your time!
Hi there,
You can achieve that by adding the below custom CSS code at the end of your base.css file.
.banner__buttons a {
background: black;
color: red;
font-weight: bold;
}
Let me know if this addressed your question.
Cheers!
Gabriel
system
October 25, 2022, 11:22pm
3
It’s showing this instead of a transparent background
and i’d like black font instead of red please.
Well, isn’t this what you’ve requested?
To change only the font color you can use the below:
.banner__buttons a {
color: black !important;
font-weight:bold !important;
}
Cheers!