Cart button quantity "+" and cart button icon delete have have disappeared

Solved

Cart button quantity "+" and cart button icon delete have have disappeared

UTOPIA-PARIS
Explorer
57 1 10

Hey ! i don't know why but when we add product to cart, in the cart section the button "+" to add more of the product selected and the icon for delete a product from cart have disappeared :

 

IMG_0529.jpg

 

 

how to fix this ?

 

website: utopia-paris.fr

 

 

thanks !

Accepted Solution (1)

CodingFifty
Shopify Partner
525 80 99

This is an accepted solution.

Hi @UTOPIA-PARIS,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

    .icon-plus {
        display: none !important;
        visibility: visible !important;
    }
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com

View solution in original post

Replies 2 (2)

CodingFifty
Shopify Partner
525 80 99

This is an accepted solution.

Hi @UTOPIA-PARIS,


Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

    .icon-plus {
        display: none !important;
        visibility: visible !important;
    }
Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
UTOPIA-PARIS
Explorer
57 1 10

it's fixed, i have find out that i added some code to hide the visbility, thanks for u anwser !!