How can I add a background color to the text in my slideshow header?

Yeps and in mobile too.. Do like to change the color of the font, inside that box?

Sure! that’d be cool to add that effect too.

Just add the color inside the code.

.hero__text-shadow {
    background: #EEEDE0;
    padding: 20px;
    color: burlywood;
}

Result:

I hope it help.

Is there any way I can change the opacity level on the box color behind the text?

Yup, add the opacity.

.hero__text-shadow {
    background: #EEEDE0;
    padding: 20px;
    opacity: .5;
}

The Opacity is value between 0 and 1, where 0 represents completely transparent and 1 represents fully opaque.

Result:

But I noticed the opacity also makes the text and buttons opaque too. Can it just make the back color opaque?

It will affect the text so it should be put on the .5 so both are same opacity the text and background.

ok thank you for all the help! I’m super happy with the outcome.

Your welcome, please dont forget to like and mark solution if my solution solve your problem.

Happy to help here. :blush: