how to add background color plus opacity to my rich text

my site https://70c709-c2.myshopify.com

I need help with adding background color and opacity to this, idk how to target it in css and where to paste, there is themes.css and themes.min.css in assets

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.section.section--blank.d-block .container{ background: red !important; /*change color according to you*/ opacity: 0.8; } ![Haptech_0-1721640245838.png|1876x845](upload://76rqOEXQxV7j3yItXJVZME2Bwzg.jpeg)

Hello @ArrowBoi

You can add code by following these steps

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

.section--blank .row.gy-3.text-center { background: #d5a05a !important; /*change color according to you*/ opacity: .6; /*adjust according to you*/ }

Was my reply helpful? Click Like to let me know!
Was your question answered? Mark it as an Accepted Solution.

Hello @ArrowBoi

Go to online store ---------> themes --------------> actions ------> edit code------->Theme.css
add this cod eat the end of the file.

.row.gy-3.text-center {
background-color: pink !important;
}

and the result will be

If this was helpful, hit the like button and mark the job as completed.
Thanks

is it not possible for the red color to start from the left and end on the right completely? I don’t want the white part on the left and right.