the padding is on 0 yet it seems to be stretching into the section below. I only want to decrease it here, only on mobile:
my url is cheffings.net → this is on the home page
the padding is on 0 yet it seems to be stretching into the section below. I only want to decrease it here, only on mobile:
my url is cheffings.net → this is on the home page
Hi @lukafernada
Try this one.
@media screen and (max-width: 749px) {
.collection .slider.slider--tablet {
margin-bottom: 0rem !important;
}
.collection .card--standard>.card__content .card__information {
padding-bottom: 0 !important;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Yes, Add this one.
@media screen and (max-width: 749px) {
.slider.slider--tablet.contains-card--standard .slider__slide:not(.collection-list__item--no-media) {
padding-bottom: 0;
}
slider-component.slider-mobile-gutter .slider {
margin-bottom: 0;
}
}
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!