Why their is a gap after images in product description ?
-
i remove all gaps in product page in the first screen shot but its not happening.
Attachments:
You must be
logged in to view attached files.
Hello,
Can you please share the product page URL where the issue persists along with the login details, so I can further check on your site and give you a possible solution.
Best Regards,
Hello,
The small gap you’re seeing between images is likely caused by default paragraph or image spacing added by the editor. Please try switching the block view to “Text” or “Code” and wrap all images inside a single <div>
without <p>
tags — that should remove the gap: https://ibb.co/fz2VcnXW
Alternatively, try to use this custom css code in theme settings > custom css and check how it works
.single-product .product img {
margin-bottom: 0 !important;
margin-top: 0 !important;
}
Best Regards,