Dawn Theme: Adjust Height/Spacing of "Help Center" and "Contact Us" Sections in Footer

Hi There,

How can I adjust the spacing in my footer so that:

1: “Help Center” and “Contact Us” are aligned (at the top of their containers)?

2: Decreasing the space between each element under “Help Center” to have similar spacing to the items under “Contact Us”?

Website:

https://guisemen.com/

Thank you in advance for any guidance you can provide.

Best,

Will

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;
}
}
1 Like

Solved – thank you!!