Hi,
Somehow there isn’t any padding for my product pages - I’d like padding on left and right, could somebody advice what to modify? Attached link is for one product page but this change should apply to all product pages, thank you!
https://www.wastd.world/products/multi-purpose-serving-platter
Hello @letsgetwasted
Go to online store ---------> themes --------------> actions ------> edit code------->base.css
at the end of the file and save.
.product__info-wrapper.grid__item.scroll-trigger.animate--slide-in {
padding: 25px !important;
}
result
If this was helpful, hit the like button and accept the solution.
Thanks
1 Like
Hi @letsgetwasted Please add the below code:
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
Hi @letsgetwasted ,
- Go to Online Store → Theme → Edit code.
- Open your theme.liquid file
- In theme.liquid, paste the below code before
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Hello @letsgetwasted ,
You can try this code; it will be helpful to you.
Go to the Online Store->Theme->Edit code->Assets->base.css>add this code at the bottom of the file.
@media only screen and (min-width: 768px) {
.product.grid {
padding: 0 2rem;
}
}
This worked perfectly, thank you!