Re: Transparent backround

Transparent backround

EcoCommuters
Tourist
7 0 1

Good day,

 

I am trying to edit the background of this contact page to transparent. 

 

Can anyone assist. I have tried multiple options from forums and youtube videos but nothing seems to work.

 

www.ecocommuters.co.za

password: 0202

 

Thank you!

Screenshot 2025-05-10 121324.png

Replies 5 (5)

EcoCommuters
Tourist
7 0 1

I have come right, sorry about that.

 

Thank you!

Mustafa_Ali
Trailblazer
455 47 84
<style>
.color-scheme-3.gradient {
    background: transparent;
}
.rte {
    color: white;
}
h2.page-title.h1 {
    color: white;
}
</style>

Mustafa_Ali_0-1746872690921.png

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the </body> ----->
before the body ----->
if this code work please do not forget to like and mark it solution

 

BiDeal-Discount
Shopify Partner
779 101 173

Hi @EcoCommuters 

I see that background was removed, right?

BiDealDiscount_0-1746872741604.png

 

- Helpful? Like & Accept solution! Coffee tips fuel my dedication.
- BiDeal Bundle Volume Discounts: Upsell with discount bundles, quantity breaks, volume discounts & mix-and-match bundles. AOV+ with free gifts, free shipping & progressive cart
- Contact me via WhatsApp

devcoders
Shopify Partner
1537 182 475

Hello @EcoCommuters 

 

1. From your Shopify Admin, navigate to Online Store > Themes > Edit Code
2. In the Assets folder, open base.css and add your CSS code at the end

 

#shopify-section-template--19239754825940__page_FFWBL .color-scheme-3.gradient {
background: transparent;
color: #fff;
}
#shopify-section-template--19239754825940__page_FFWBL .page-title.h1 {
color: #fff;
}

 

devcoders_0-1746875137643.png

 

Shopify Developer: Helping eCommerce Stores
If you need assistance with your store, feel free to contact us at devcodersp@gmail.com
WhatsApp No: +91 8516919310 If my assistance was helpful, please consider liking and accepting the solution. Thank you!

Stevepro099
Tourist
5 1 1

Hi there,

Thanks for reaching out.

To make the background of your contact page transparent, you can try the following steps:

Step 1: Go to your Shopify admin, then to Online Store, then Themes, and click Customize.
Navigate to the contact page and check if the section settings allow you to change or remove the background color. Some themes have this option directly in the editor.

Step 2: If there’s no setting in the editor, you’ll need to add custom CSS.
Go to Online Store, then Themes, click Actions, then Edit Code.
Open your main CSS file. This is usually named base.css, theme.css, or styles.css under the Assets folder.
At the bottom of that file, add a CSS rule that targets the contact page and sets the background color to transparent. You may need to inspect the page to confirm which class is controlling the background.

Step 3: After saving, clear your browser cache and refresh the page to see if the change takes effect.

If you’re unsure which CSS class to target, I’m happy to take a closer look and Guide you identify the exact code you need.