how to add background color plus opacity to my rich text

how to add background color plus opacity to my rich text

ArrowBoi
Visitor
3 0 0

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

ArrowBoi_0-1721639694795.png

 

Replies 4 (4)

Haptech
Shopify Partner
58 4 1

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 </body> on theme.liquid

<style>
.section.section--blank.d-block .container{
background: red !important; /*change color according to you*/

opacity: 0.8;
}

Haptech_0-1721640245838.png

 

</style>

- If helpful then please Like and Accept Solution.
- Try Haptech: B2B/wholsale Free? Check this app for all Shopify Plans.
- Need help from our expert? Kindly share your request with us via hatptech@gmail.com

niraj_patel
Shopify Partner
2391 516 517

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 </body> on theme.liquid
<style>
.section--blank .row.gy-3.text-center {
background: #d5a05a !important; /*change color according to you*/
opacity: .6; /*adjust according to you*/
}
</style>

techlyser_web_0-1721597919304.png

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

Shopify Partner || Helping eCommerce Stores
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution.
- For further discussion contact: Email ID- info@techlyser.com

Rahul_dhiman
Shopify Partner
855 168 186

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
8.png

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

Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront

Contact here


BEST CUSTOMER ACCOUNTS APP WITH CUSTOM WISHLIST OPTION 
TRY OUR APP :

PWC: Customer Accounts & Pages

ArrowBoi
Visitor
3 0 0

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.