Broadcast Theme: Edit Background Of Cart Drawer (Currently Transparent)

Solved

Broadcast Theme: Edit Background Of Cart Drawer (Currently Transparent)

cremildebispo
Tourist
5 1 1

Hello, I've been trying to figure out how to change the color of the cart drawer's but am having a hard time. I've tried to change literally every single color option on the settings, and the Cart drawer remains transparent.  Originally the background was white. I've tried to search for answers in the forum, and even went to the Code, trying to figure out if I could change the color there, but I had no luck. I really don't know what to do anymore. Please help me!Captura de ecrã 2022-10-16, às 03.41.31.png

Accepted Solutions (2)
MarinaPetrovic
Shopify Partner
559 124 187

This is an accepted solution.

Hi @cremildebispo , go to edit code > assets > theme.css and add this:

.cart-dropdown{
background-color:#fff!important;
}
M.Petrovic | Shopify Developer
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution

View solution in original post

cremildebispo
Tourist
5 1 1

This is an accepted solution.

Thank you so much @MarinaPetrovic ! 🤗

You just nailed it 

View solution in original post

Replies 8 (8)

MarinaPetrovic
Shopify Partner
559 124 187

Hi @cremildebispo , please share store url and password (if it's password protected) so I can take a look.  🙂

M.Petrovic | Shopify Developer
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
cremildebispo
Tourist
5 1 1

Hi @MarinaPetrovic , thank you so much for your reply.

Here is the login data:

 

https://www.cremildebispo.com/

cremildebispo20222022@

MarinaPetrovic
Shopify Partner
559 124 187

This is an accepted solution.

Hi @cremildebispo , go to edit code > assets > theme.css and add this:

.cart-dropdown{
background-color:#fff!important;
}
M.Petrovic | Shopify Developer
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
cremildebispo
Tourist
5 1 1

This is an accepted solution.

Thank you so much @MarinaPetrovic ! 🤗

You just nailed it 

cremildebispo
Tourist
5 1 1

Hi @MarinaPetrovic , could you please help me with another similar situation?

I'm having the same issue with my 'Quick Add' buttons. They we're white, and now they are transparent. I don't know how this happened 😩 cann you help me please?

 

Quick Add button transparentQuick Add button transparent

MarinaPetrovic
Shopify Partner
559 124 187

Hi @cremildebispo , go to edit code > assets > theme.css and add this:

.selector-wrapper__scrollbar,
.slideup__inner--button{
background:#fff;
}
M.Petrovic | Shopify Developer
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
rodneycharles
Visitor
1 0 0

Hello - for broadcast theme, would you happen to know the javascript is to launch the cart drawer?

shk-atta
Shopify Partner
1 0 0

@rodneycharles this code is launching the drawer but not opening the updated one if anyone knows how to open the updated one please let me know 
document.dispatchEvent(new CustomEvent("theme:cart:toggle", {
bubbles: true
}));