Hi! How do I reduce the space in “featured collection” between product photos and carousel number for the Dawn theme ver 11.0.0? See photo below for clarification.
URL is topspot.cards
A user seeks to reduce the vertical spacing between product photos and carousel navigation numbers in the Dawn theme’s “featured collection” section (version 11.0.0).
Solution Provided:
For desktop:
.card__information {
padding-bottom: 0px !important;
}
.slider--desktop {
margin-bottom: 0px !important;
}
For mobile:
@media only screen and (max-width: 989px){
section#shopify-section-template--[ID] .card__content {
white-space: nowrap;
}
}
Status: The solution was confirmed working with visual results shared. The user requested and received both desktop and mobile implementations.
Hi! How do I reduce the space in “featured collection” between product photos and carousel number for the Dawn theme ver 11.0.0? See photo below for clarification.
URL is topspot.cards
Try this one.
.card__information {
padding-bottom: 0px !important;
}
.slider--desktop {
margin-bottom: 0px !important;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Thank you so much! Is there away to do this for mobile as well?
Yes, Check this one.
Same Istruction.
@media only screen and (max-width: 989px){
section#shopify-section-template--16018551046282__0e26de2a-7d3d-471d-82c3-80f0ab1eb8b3 .card__content {
white-space: nowrap;
}
}
And Save.
Result:
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!