Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
This is how it looks I want the image to be full size no paddings on sides and top
this is my webiste: https://leorel.com/products/leorel-magnetic-eyelashes?_pos=2&_psq=s&_ss=e&_v=1.0&variant=49256595161...
Solved! Go to the solution
This is an accepted solution.
Hi @DylanRyan ,
You could follow these steps:
Step 1: Go to Online store > themes > edit code and find base.css file
Step 2: Insert below code at the end file and Save them
@media screen and (max-width: 750px) {
section[data-section] {
padding: 0 !important;
}
.product__info-wrapper.grid__item {
padding: 0 2rem !important;
}
}
If our suggestions are useful, please let us know by giving it a like, marking it as a solution.
MIDA: Heatmap, Record & Replay |BLOOP Referral Program, Reward |
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
This is an accepted solution.
Add the following code to the bottom of your base.css file
.ymq_swiper-slide img {border: 0px !important;}
This is an accepted solution.
Hi @DylanRyan ,
You could follow these steps:
Step 1: Go to Online store > themes > edit code and find base.css file
Step 2: Insert below code at the end file and Save them
@media screen and (max-width: 750px) {
section[data-section] {
padding: 0 !important;
}
.product__info-wrapper.grid__item {
padding: 0 2rem !important;
}
}
If our suggestions are useful, please let us know by giving it a like, marking it as a solution.
MIDA: Heatmap, Record & Replay |BLOOP Referral Program, Reward |
Need help from our expert? Kindly share your request with us via community@bsscommerce.com
It almost did it but for some reason there is little gap on the left and top on every picture
Hi,
The gap is becuase of the border
(.ymq_swiper-slide img ) it is set to 2px you need to change it to 0
This is an accepted solution.
Add the following code to the bottom of your base.css file
.ymq_swiper-slide img {border: 0px !important;}
Did not completely disappear it but made it super tiny, thank you very much for the help.