How can I modify the cart icon and colors in Prestige Theme?

Hi,

I am using the prestige theme and have 3 things I need help with:

  1. How do i make the cart icon in header to be bold/ have more weight?

  2. How do i change the “remove” text color in the cart drawer?

  3. How do i change the background color of my cart drawer?

Thanks in advance.

@d78427 - all 3 changes will need css, can you please share your website link?

https://silkypelican.myshopify.com/

Thanks.

@d78427 - what colors do you want for remvoe and background?

@d78427

yes, please try this code

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.css ->paste below code at the bottom of the file.
#sidebar-cart {
    background: var(--header-background);
}

.CartItem__Remove {
    color: red;
}

.CartItem__Remove:before {
    background: red !important;
}