Looking for help to change color on "cart background color"

We have tried to customize it - but cant seem to get it to work in the the editor or the right prompt in the .css.

We are using “colors theme”.

We want to have like white or theme grey as background color on this right menu cart bakground color, not dark and black.Any solutions? se attached file

1 Like

Hi @rygerto

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

Hi @rygerto

This is Richard from PageFly - Shopify Page Builder App

Please add this code to your theme.liquid above the to get this solved

Step 1: Online Stores > Themes > More Actions > Edit code

Step 2: click on theme.liquid and paste the code above the


You can change the background hexcode at #d2d5d9 to your desired color

Hope this can help you solve the issue

Best regards,

Richard | PageFly

It actually didnt work, maybe you could check - https://bon-isla.com/

Would like to change the black background to yellow! … or change background to white (and then change text to black of course)

1 Like

Hi @rygerto

Check this one.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

.side-cart, .side-cart .side-cart-container .more {
    background: #f7df8d !important;
}

And Save.

Result:

Note; Do you still want to change the text colors?

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like

Ohh nice! ty! Have changed it and tried it out. If I want the background white I understand I can change the code you sent but if I want to change the color of the white text here, how do I do that?

1 Like

Check this one.

Same Instruction.

.side-cart *:not(button.btn.accent.cart__checkout) {
    color: black !important;
}
.side-cart .side-cart-header, .side-cart .side-cart-container .more {
    border-color: black;
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

1 Like