Removing 'add to cart' quantity button on collections

I added code previously to include “Add to Cart” button showing in Debut theme collections, however I’m wondering if I can remove the “quantity” box?

Hi @ml2022

You should be able to, would you mind sharing your store’s URL so we can provide a solution for this? Thanks!

Thanks! https://revolutionher.myshopify.com

Add the following code to your theme.css file at the very end:

input#quantity
{
display:none;
}

Should that help answer your query, we always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!

Thanks for your help!

You’re most welcome @ml2022 ! We always appreciate liking & marking an as answer to let the community find quality solutions faster. Thanks!

I do have one other question - how would I go about changing the colour of the ‘add to cart’ button?

Add the following code after the code you used above:

input.btn {
/*Button Background Color*/
background: #000000;

/*Button Font Color*/
color: #FFFFFF;
}

And adjust the values as needed. Let me know if that works!