Hi,
How can i change the description to below product image using custom liquid. But the image in description can not go full width. Can someone teach me how to remove the left and right padding? So the image can be full width in full screen mode.
Here my product page.
https://arkibkopi.my/products/colombia-finca-el-girasol-geisha-sunflower
I want to make look some thing like this big
Hi @helmi888 ,
You can try this way:
- Online Store → Themes → Edit code
2, Find the base.css file and add this code at the end of the file:
@media screen and (min-width: 750px)
.page-width {
padding: 0 !important;
}
This will remove the padding on the sides, you can also remove the margin, but because the image width is 1000px, if you continue to increase it, the image will be out of focus, I think this is a decent size reasonable, if you want let me know. @helmi888