Dawn theme - Change Multi Column Background color

Dawn theme - Change Multi Column Background color

INFRA
Shopify Partner
238 2 84

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
7381 1997 2439

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

- Get a quick Shopify quote – Click here!

- Custom Design | Advanced Coding | Store Modifications


oscprofessional
Shopify Partner
16366 2440 3188

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

 

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
INFRA
Shopify Partner
238 2 84

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
831 171 188

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
6136 1097 1473

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
238 2 84

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