On my home page, the text on the image banner is opaque. I don’t want that, I need it to be solid. How can I change that? I am using dawn
Thank you!
I’d also like to change the colour of the button & the text on it
On my home page, the text on the image banner is opaque. I don’t want that, I need it to be solid. How can I change that? I am using dawn
Thank you!
I’d also like to change the colour of the button & the text on it
Hi @polly5 ,
This is Theodore from PageFly - Shopify Page Builder App.
For solving the problem about the Change Opacity Of Text On Image Banner, let’s try this solution:
Online Store ->Theme ->Edit code->theme.liquid
I’ll be so happy if my suggestion can help to solve your problem. If you have any further questions, please feel free to tell me.
Best regards,
Theodore | PageFly
Hi @polly5 Please add the code in your theme.css/base.css/style.css file which is available in your theme.
.banner__text.subtitle {
opacity: solid;
background: black;
}
a.button.button--primary {
color: blue;
background: red;
}
If you are not sure where is your theme.css/base.css/index.css/style.css file please follow the steps:
Please Note: You can change the colors according to your needs.
Result:
If you will unable to implement the same then I’m happy to do this for you, let me know. I can implement the code changes so that this will work well for you.
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil
Hi @polly5
Check this one.
.banner__text.subtitle span {
opacity: 1 !important;
color: white !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!