Hello, as shown by the arrow in the image, I would like to slightly decrease the space. This is on my product page and I only want to decrease the space on mobile. Thank you!
Hi @Simon159
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.
@media (max-width: 749px) {
.product__info-container .product__description { margin-bottom: -8px !important; }
}
Hi @Simon159 Please add the following code
.alr-wh-crs-bs {
margin-top: -36px !important;
padding-top: unset !important;
}
Please follow the steps:
- Login in shopify admin.
- Click on the Online Store.
- Then click on the button next to Customize in live Theme.
- Click Edit Code.
- Search theme.liquid in the code in left hand side in your theme.
- Add the following code in the bottom of the file above tag
Result:
Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!
Best Regards
Sahil

