Re: Dawn theme - Change Multi Column Background color

Dawn theme - Change Multi Column Background color

INFRA
Shopify Partner
131 0 53

Hi,

 

I'm trying to change the background color of the multi columns in the Dawn theme. They're originally set on a greyish colour. I've found the code to change it but it won't let me pick a hex color, only "black" "grey "orange" written out like that.

 

 

.multicolumn-card.content-container {
  background-color: orange;
}

 


Any idea how to change it to F3F3F3 instead?

 

Screenshot 2024-08-02 at 16.18.53.png

 

Website

password: dave

 

Thanks!

Replies 6 (6)

Moeed
Shopify Partner
4914 1296 1571

Hey @INFRA 

 

Follow these Steps:

1) Go to Online Store
2) Edit Code
3) Find theme.liquid file

4) Add the following code in the bottom of the file above </body> tag

<style>
.multicolumn-card.content-container {
    background: #F3F3F3 !important;
}
</style>

RESULT:

Moeed_0-1722581053084.png

 

If I managed to help you then, don't forget to Like it and Mark it as Solution!

 

Best Regards,
Moeed

-Need a Shopify Specialist? Chat on WhatsApp
- Custom Design | Advanced Coding | Store Modifications
- Your Coffee Tip and my code, A perfect blend. ❤️

oscprofessional
Shopify Partner
16115 2409 3121

Hello @INFRA 
can add code by following these steps

1. Go to Online Store -> Theme -> Edit code.
2. Open your theme.css file

3. Paste the below code

#shopify-section-template--17025572733088__multicolumn_rE9gCV .multicolumn-card.content-container {
	background-color: #fda606;
}

oscprofessional_0-1722581056352.png

 

Get pass your Store Core Web Vital Free Speed Optimization Audit, Chat on WhatsApp | Skype : oscprofessionals-87 | Email: pallavi@oscprofessionals.com | Hire us | Guaranteed Site Speed Optimization | Website Free Audit | Shopify Theme Customization | Build Shopify Private App | Shopify SEO | Digital Marketing | Oscp Upsell & Cross sell App : Free | Oscp Sales & Volume Discount App : Free | Custom Pricing Wholesale App : Free
INFRA
Shopify Partner
131 0 53

Hi! thanks for your help, unfortunately it didn't work with #f3f3f3. It seems to only work with darker colors? 

 

When I use your code and change it to #F3F3F3 it shows up as below. Note that the color in the section above is F3F3F3 so you can see the difference.

 

Screenshot 2024-08-02 at 17.00.07.png

GTLOfficial
Shopify Partner
444 89 87

Hello @INFRA 
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the end of the file and save.

#shopify-section-template--17025572733088__multicolumn_rE9gCV .multicolumn-card.content-container {
background-color: #F3F3F3;
}

result
6.png


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

- Buy me a Pizza
- If helpful then please Like and Accept Solution.
- Want to modify or custom changes or bug fix on the store Hire me. GTL web solutions
- Want Complete Storefront: Send an email ⇨- Email: info@gtlofficial.com - Skype: ritesh_27dh

ZestardTech
Shopify Partner
5721 1050 1382

Hi @INFRA 

1. In your Shopify Admin go to online store > themes > actions > edit code
2. Find Asset > base.css and paste this at the bottom of the file:

.multicolumn-card.content-container {
background-color: #F3F3F3!important;
}

 

ZestardTech_0-1722581556799.png

 

Want to modify or develop new app, Hire us.
If helpful then please Like and Accept Solution .
Email: support@zestard.com
Shopify Apps URL :- https://apps.shopify.com/partners/zestard-technologies
Custom Modifications Into Shopify Theme | Shopify Private App | SEO & Digital Marketing
INFRA
Shopify Partner
131 0 53

Hi, I tried this too but unfortunately it doesn't work. Anything else we can try?