site is blackcoyotejewelry.com
I have an image set as the background for my newsletter section, which makes it difficult to see the text. I’ve already figured out how to change the text color to white and added black boxes behind the text.
I cannot figure out how to change the opacity of just the black color. Everything I’ve tried so far also makes the text semi transparent.
this is the code I’m using for the background image addition:
.index-section--newsletter-background {
background: url(https://cdn.shopify.com/s/files/1/0056/5562/5846/files/red-clay-horizontal.jpg?v=1627850727);
background-repeat: no-repeat;
background-size: cover;
}
And this is the code I’m using for the white text and black boxes:
.newsletter-section.index-section--newsletter-background h2 {
color: #ffffff;
background: #000000;
}
.newsletter-section.index-section--newsletter-background p {
color: #ffffff;
background: #000000;
}
both inserted at the bottom of theme.scss.liquid
p.s. I also have a newsletter signup in the footer, and do not want anything there (or any other page) to change, just add colored boxes in the newsletter section only.