i’m trying to fit my slideshow pictures to mobile
as they are currently cut on mobile >
i put this code >
@media (max-width: 768px) {
.shopify-section.section,
.shopify-section.section > div {
min-height: 0 !important; /* Remove forced height */
height: auto !important; /* Allow height to adapt to content */
padding: 0 !important; /* Eliminate padding */
margin: 0 !important; /* Eliminate margins */
overflow: hidden !important; /* Prevent hidden elements from spilling */
}
.shopify-section.section img {
width: 100% !important; /* Ensure the image spans the full container width */
height: auto !important; /* Maintain aspect ratio */
object-fit: cover !important; /* Prevent distortion */
display: block; /* Eliminate extra spacing from inline elements */
}
}
into the class “base.css”
and the picture is fine
but then there is a lot of dead space below the picture >
the best would obviously be the put another picture for mobile
but dawn doesn’t allow that without major css changes
so just to make the current pictures now being cut on mobile would work
but is there a way to remove that dead space there ?
my website is;
thanks friend


