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

Solved

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

guisemen
Excursionist
44 2 5

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/

 

guisemen_0-1716668879201.png

 

Thank you in advance for any guidance you can provide.

 

Best,

Will

-Will
Accepted Solution (1)

Ahsan_ANC
Shopify Partner
1409 254 327

This is an accepted solution.

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



Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search

View solution in original post

Replies 2 (2)

Ahsan_ANC
Shopify Partner
1409 254 327

This is an accepted solution.

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



Contact for any custom design? Skype : ahsananc
>Was your question answered? Mark it as an Accepted Solution!
Feel Free to Contact Me at my Email: anc2277@gmail.com


To enhance and customize Shopify search and filter, I use Boost Product Filter & Search
guisemen
Excursionist
44 2 5

Solved -- thank you!!

-Will