Edit Padding on product page, mobile only

Yes there is, add the following CSS code to the theme scss file (Online Store → Actions → Edit Code → Assets/theme.scss.liquid):

@media screen and (max-width: 749px) {
.product__content-header {
margin-top: 32px !important;

margin-bottom: 32px !important;
}
}

1 Like