Hi,
Wanted to know if possible to remove the white boarder or reduce as much as possible the boarder around the collapsable content on dawn. See below photo.
Theme is on draft, see URL link below, this is located on the sell to us page.
https://nnvtyjfzriardcir-25590600.shopifypreview.com
Thanks,
Daniel
1 Like
Hi @Danielparsons ,
Here you go, play around with the ‘rem’ till you find the desired padding. Please find CSS edits here below…
- Go to Online Store-> Theme->Edit code
- Asset-> collapsible-content.css ->paste the below code at the bottom of the file.
@media screen and (min-width: 750px) {
.collapsible-section-layout {
padding-bottom: 1.5rem !important;
padding-top: 1.5rem !important;
}
}
.collapsible-section-layout {
padding-bottom: 1.5rem !important;
padding-top: 1.5rem !important;
}
If this solves the issue, please like the post and mark it as a solution.
@Danielparsons
can you try this code
- Go to Online Store->Theme->Edit code
- Asset->/collapsible-content.css ->paste below code at the bottom of the file.
@media screen and (max-width: 750px) {
.collapsible-section-layout {
padding-bottom: 10px;
padding-top: 0;
}
}
1 Like