Changing the order instruction and quantity bubble color

Changing the order instruction and quantity bubble color

NushIsReady
Visitor
2 0 0

Hello there!

i have managed to change the bubble colours yesterday in the theme color settings (on the left) that i have marked red on the screenshot , however i somehow did not save it. I have tried changing all of the colour options on the left, but none of them changed the red marked bubbles, even though it worked before. Is there any other way i could change these specific bubbles?

Thank you in advance! (I am using the free Sense theme)

 

Képernyőfelvétel (4).jpg

Replies 4 (4)

Ahsan_ANC
Shopify Partner
1409 254 327

Hi @NushIsReady 
You can try this code


1. Go to Online Store-> Theme->Edit code
2. Asset-> base.css ->paste the below code at the bottom of the file.

 

.quantity__button {
    background-color: #1D9C28 !important;
}
.quantity__button:first-child {
    border-radius: 10px 0 0 10px;
}
.quantity__button:last-child{
    border-radius: 0 10px 10px 0;
}
.quantity__input {
    background: #1D9C28!important;
}
.cart__note .field__input {
    background: #1D9C29;
}
Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search
NushIsReady
Visitor
2 0 0

Thank you! The order note works just fine now, the quantity button has 3 different colours though:

 

Képernyőfelvétel (6).jpg

Ahsan_ANC
Shopify Partner
1409 254 327

if you can share preview URL so i can give code

Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search
Ahsan_ANC
Shopify Partner
1409 254 327
.quantity__button {
    background-color: #d3d3d3!important;
}
.cart-item__quantity .quantity__button:first-child {
    border-radius: 15px 0 0 15px;
    background-color: #d3d3d3!important;
}
.cart-item__quantity .quantity__button:last-child{
    border-radius: 0 15px 15px 0;
    background-color: #d3d3d3!important;
}
.cart-item__quantity .quantity__input {
    background: #d3d3d3!important;
    opacity: 1;
}
.cart__note .field__input {
    background: #d3d3d3;
}

replace the previous code with this one

 

 

Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search