Reducing the gaps in product section

Hello, maybe someone could help me? I’d like to reduce some gaps in the product section on this page: https://holycup.lt/products/ceremonine-matcha-arbata

Thanks!

Hi @manter

Is this only on the mobile screen? or for all screen?

If it is, check 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:

@media only screen and (max-width: 575px){
.tt-product-single-info.stickprcolheight-js {
    padding-top: 0px;
}
.tt-product-single-info .tt-wrapper {
    margin-top: 0px !important;
}
.tt-product-single-info .tt-row-custom-01 .col-item:not(:first-child) {
    margin-top: 10px;
}
}

And Save.

result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!