How do you make the footer more compact in the mobile version?

Hi,

Can someone help me with how to change the footer in the mobile version?

It looks okay in the desktop version but in the mobile version it is really long and not nice. I want it to be more compact and the menus to be next to each other and not on top of each other. It should be a compact version of the desktop version. Please see pictures of the mobile version and the desktop version below.

My website is in the dawn theme.

Thank you very much!!

// Filippa

Hi @Filippa123

PLease, share your store URL. Thanks!

Hi @Filippa123 , kindly provide your store URL please and if it is password protected, please share the password as well. Thanks

Hi, @Filippa123

Could you please share the link to your store and the password (if it’s password protected)? That will help us take a closer look and provide more accurate help.

Hi,
https://maggithelabel.com

password: maggithelabel

Thanks!!

Thanks for the info, check this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
@media screen and (max-width: 749px) {
.footer-block.grid__item {
    padding: 0;
    margin: 1rem 0 !important;
}
.footer-block__heading {
    margin: 0 !important;
}

.footer-block__details-content .list-menu__item--link {
    padding: 0 !important;
}
.footer-block__brand-info {
    text-align: center;
}
.footer__list-social.list-social {
    justify-content: center;
}
 .footer-block__details-content {
    margin-bottom: 2rem !important;
}

.footer-block.grid__item.footer-block--menu {
    text-align: center;
}
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Hi,
Thank you!
Social media list didn’t end up in the middle like in your picture.

How do i fix it?

Here is a pic of the code:

I think I missed sharing part of the code. Would you mind sending the password again? You can PM me if you prefer not to share it publicly. Thanks!

Thanks for the info, sorry I miss some code.

Add this one.

@media screen and (max-width: 749px) {
.footer-block__brand-info .footer__list-social.list-social {
    justify-content: center !important;
}
h2.footer-block__heading.rte {
    text-align: center !important;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thank you!!!