Hey, how can I reduce/remove the padding above and below the pop up on the product page please without affecting anything else.
My website is: doorstepdrip.com
It currently looks like this:
Also align it to the left please
any help would be much appreciated, thanks 
Hi @doorstepdrip ,
Is this for mobile only? If it is try this one.
- From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
- Find the theme that you want to edit and click on “Actions” and then “Edit code”.
- In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
- And Save.
@media only screen and (max-width: 749px){
modal-opener.product-popup-modal__opener.no-js-hidden.quick-add-hidden {
margin: 0px;
}
}
Result:
I hope it help.
Hello @doorstepdrip
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->base.css>Add this code at the bottom.
@media screen and (max-width: 768px){
.product-popup-modal__button {
height: auto;
}
}