How can I change the cart background color to #B9B7B7 in the Dawn theme?

Solved

How can I change the cart background color to #B9B7B7 in the Dawn theme?

jakegrieveson
Explorer
123 0 17

I need some code to change my cart background, i would like it to be #B9B7B7, what is some code to do this?

Theme:dawn

Website: desire-online.net

Screenshot (458).pngScreenshot (462).png

Accepted Solution (1)

vpsbohra
Shopify Partner
444 44 45

This is an accepted solution.

Hi @jakegrieveson 

You can follow the following steps:

1. Please go to the Online Store.
2. Then Edit Code.
3. Please find the theme.liquid file.
4. Please add code before closing the tag </body> tag.

<style>
div#shopify-section-template--19958073262370__cart-items {
background-color: #B9B7B7 !important;
}
div#shopify-section-template--19958073262370__cart-footer {
background-color: #B9B7B7 !important;
}
</style>

 

laddisahsi_0-1698300198601.png

 

 

If this solution is worked, then please Like this and Mark this as accepted solution!


Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!

View solution in original post

Replies 3 (3)

biznazz101
Shopify Partner
494 50 98

Go to Themes > Customize > Cart Template

Then select the Items Section and click on the Custom CSS Settings and paste the code below.

 

 

cart-items {
  background: #B9B7B7;
}


I hope this solves your problem!
@biznazz101 

Don't hesitate to reach out for more help with your store.
SEE OUR TASK STORE or check us out via our profile! FREE STORE AUDIT
jakegrieveson
Explorer
123 0 17

This worked but the bottom section is still white how do i change this too?

Screenshot (463).png

vpsbohra
Shopify Partner
444 44 45

This is an accepted solution.

Hi @jakegrieveson 

You can follow the following steps:

1. Please go to the Online Store.
2. Then Edit Code.
3. Please find the theme.liquid file.
4. Please add code before closing the tag </body> tag.

<style>
div#shopify-section-template--19958073262370__cart-items {
background-color: #B9B7B7 !important;
}
div#shopify-section-template--19958073262370__cart-footer {
background-color: #B9B7B7 !important;
}
</style>

 

laddisahsi_0-1698300198601.png

 

 

If this solution is worked, then please Like this and Mark this as accepted solution!


Laddi

-Shopify website development, Theme & App Development
-Contact me: WhatsApp


-Email Me
-If this solution is worked, then please Like this and Mark this as accepted solution!