Hi there,
how do I decrease the space between the pop up links here?
I tried below but this code did not work:
.popup-link {padding-bottom: -20px;}
site: homepage
A user needed to reduce vertical spacing between popup links in the Ritual theme. Their initial CSS attempt using negative padding on .popup-link didn’t work.
Solutions Provided:
padding-block on .group-block-content.layout-panel-flex.layout-panel-flex--column in the styles.css filedisplay: block in base.cssResolution:
The issue was successfully resolved using one of the provided CSS solutions. The user confirmed it worked well, though they didn’t specify which approach they implemented.
Technical Note:
Both solutions target the flex layout container of the popup links, either by reducing block padding or changing the display property from flex to block.
Hi there,
how do I decrease the space between the pop up links here?
I tried below but this code did not work:
.popup-link {padding-bottom: -20px;}
site: homepage
Hello @INFRA,
Try this css
.group-block-content.layout-panel-flex.layout-panel-flex--column {
padding-block: 8% !important;
}
You can add this css in assets → styles.css
Hello @INFRA
.group-block-content.layout-panel-flex.layout-panel-flex--column {
display: block;
}
that worked well, thank you!
Hello @INFRA
Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful, please like all posts.