Dawn theme Desktop footer customization - urgent

I want to customize my Dawn theme website’s desktop footer. Currently, the spacing between sections is uneven. How can I equally space the content, such as brand information and menu items?

website : https://2512.in/

Thanks in advance

1 Like

hope you like it

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the ----->
if this code work please do not forget to like and mark it solution

Hi @Sivadarshan

let try to add custom css below:

@media screen and (min-width: 750px) {
  .footer__blocks-wrapper > .footer-block {
    padding-inline: 15px;
  }
}

Hello @Sivadarshan
Go to online store ----> themes ----> actions ----> edit code ----> base.css
add this code at the end of the file and save.

@media screen and (min-width: 991px) {
.footer .footer__blocks-wrapper {
width: 100% !important;
}
}

result

If this was helpful, hit the like button and accept the solution.
Thanks