How can I reduce padding on my product page?

Please see the attachment and let me know how to reduce padding highlighted by blue arrow and blue text.

Hi @SurTri ,

Please share your store URL and if your store is password protected then please provide password too.

So that we can help you.

Thank you.

Store link is : www.TOAI.in

my store is not password protected.

Hi @SurTri ,

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.main-content + .hr--large {
    margin-top: 0 !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Nope it did not work.

Hi @SurTri ,

Sorry, I was missing the code

You can follow the instruction below:

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.scss->paste below code at the bottom of the file:
.main-content + .hr--large {
    margin-top: 0 !important;
}

.template-product .main-content {
    padding: 0 !important;
}

.product-recommendations {
    margin-top: 30px !important;
}

.product-recommendations .section-header {
   margin-bottom: 20px !important;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.

Thanks a lot , it worked.