Hello,
On the homepage of my website I have a slider with two different images. On the first image I have a pink translucent box. I would like to add one to the second image as well, however I would like for it to be color #BF1323. How do I keep the first one pink and make the second one red? My website is projects817.com
Thank you in advance,
1 Like
@Only1mrsfragili
yes, please try this code
- Go to Online Store->Theme->Edit code
- Asset->/styles.css ->paste below code at the bottom of the file.
.slide-2 .caption-content {
background: #bf1323;
}
1 Like
Hi, that only partial worked. It got the background red, but it’s solid and not translucent like the first.
I was able to solve it I needed to use the rgba background color and it worked.
.slide-2 .caption-content {
background: rgba(191, 19, 35, 0.5)
}
1 Like
@Only1mrsfragili
oh that would be great if like that please add like and accept some one use in future
1 Like