How can I change the color of my cart note box?

I am needing to change the colour of the ‘cart note box’ asap!

can anyone please help?

currently it is black with black text

i need the text black but the button background white.

currently all thats shows is a black button

i cannot find anywhere to change the colour of this

Thanks in advance!

Fashionopolism theme

Hey @Self1007
Kindly share your Store URL and Password if enabled

Hello @Self1007

Please provide your store URL and, if it is password protected, please share the password so I can review it and provide a solution.

www.mytimetochill.com

www.mytimetochill.com

it is on the cart page, black box and cant see text

needs to be white. the black box looks ugly

thanks

Hello @Self1007

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->stylesheet.css>Add this code at the bottom.

a:visited {
    color: #fff !important;
}
span.icon.inactive-arrow {
    color: #fff !important;
}

Thank you

that worked

Is there a way to make the box the same purple colour as the rest of my website and the font black?

Hello @Self1007

You can try this code: it will be helpful to you

Go to the Online Store->Theme->Edit code->Assets->stylesheet.css>Add this code at the bottom.

.ajax-cart__accordion .tlink.has_sub_menu a, .ajax-cart__accordion .tlink2.has_sub_menu a {
    background: #bfb0ff !important;
}
a:visited, span.icon.inactive-arrow {
    color: #000 !important;
}