New Shopify Certification now available: Liquid Storefronts for Theme Developers

Change cart background

Solved
jakegrieveson
Explorer
123 0 16

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)
laddisahsi
Shopify Partner
333 34 36

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
293 23 43

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 TUTORIALS
jakegrieveson
Explorer
123 0 16

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

Screenshot (463).png

laddisahsi
Shopify Partner
333 34 36

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!