Hi @guisemen add this css at the bottom of base.css file
@media only screen and (min-width: 768px){
.footer__blocks-wrapper > div:nth-child(3) {
align-self: flex-start;
}
.footer__blocks-wrapper > div:nth-child(2) a {
padding-bottom: 0;
}
}
Goal: Align the “Help Center” and “Contact Us” footer sections at the top and reduce vertical spacing between “Help Center” items.
Fix provided: Add a CSS snippet to the end of base.css within a media query for screens ≥768px. It uses nth-child selectors to:
Technical note: The solution relies on specific block order (nth-child selectors) and a media query (applies only on larger screens).
Outcome: The change resolved the issue; the original poster confirmed it as solved. Status: Closed/resolved.
Hi @guisemen add this css at the bottom of base.css file
@media only screen and (min-width: 768px){
.footer__blocks-wrapper > div:nth-child(3) {
align-self: flex-start;
}
.footer__blocks-wrapper > div:nth-child(2) a {
padding-bottom: 0;
}
}