Space at top of product page is driving me crazy. How can I remove it?

Solved

Space at top of product page is driving me crazy. How can I remove it?

BuriedInWork
Tourist
25 0 2

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

 

BuriedInWork_0-1729014181621.png

 

Accepted Solution (1)

PaulNewton
Shopify Partner
7731 678 1630

This is an accepted solution.

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;
}

 

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


View solution in original post

Replies 2 (2)

PaulNewton
Shopify Partner
7731 678 1630

This is an accepted solution.

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;
}

 

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


BuriedInWork
Tourist
25 0 2

That worked, thanks!