Hi! I would like to center align the quick add button on the product and it possible make the button width slightly wider. I can’t find a way to do this and would appreciate any help! Thanks
Hi @Pinksox ,
You can try the following steps to customize the Quick add button as you want:
-
Go to Shopify admin > Online store > Themes > choose Edit code on the theme you want to edit.
-
Find the base.css file under Assets folder and insert the following CSS code at the bottom of the file:
.quick-add.no-js-hidden {
justify-content: center;
width: 120px;
}
Save your changes after that and check on the store front to see if it works.
I hope this can help.