I’ve double checked that padding is set to 0, and can’t figure out what’s causing the extra space at the top of my product pages. Any ideas on how to troubleshoot is greatly appreciated!
https://shop.buriedinwork.com/products/clear-kit-deluxe-physical
Hi @BuriedInWork
First double check the section for any relevante space/padding settings.
To fix with style band-aid in a custom-css setting for that section try the following:
https://help.shopify.com/en/manual/online-store/themes/theme-structure/extend/add-css
product-info .page-width .product.grid {
padding-top: 0px;
}
Or with the !important declaration; that should be avoid if possible:
product-info .page-width .product.grid {
padding-top: 0px !important;
}