Hide a section and change cart button color on 1 page

Solved

Hide a section and change cart button color on 1 page

Emma53
Excursionist
26 1 8

Hello I am looking to hide "view full details" on this product section for this page. I am also wanting to change the "add to cart" button to be a different color. https://taleology.com/cart

 

Both of these I am looking to change on JUST this page so looking to do liquid code for it.

Accepted Solution (1)

CodingFifty
Shopify Partner
914 136 164

This is an accepted solution.

Hi @Emma53,


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.

.cart-template a.product__view-details.btn.btn--with-icon {
    display: none !important;
}


.cart-template .product__block.product__block--buy_buttons,
.cart-template .product-form__submit {
    background: grey !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

Reply 1 (1)

CodingFifty
Shopify Partner
914 136 164

This is an accepted solution.

Hi @Emma53,


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.

.cart-template a.product__view-details.btn.btn--with-icon {
    display: none !important;
}


.cart-template .product__block.product__block--buy_buttons,
.cart-template .product-form__submit {
    background: grey !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