Remove gaps between quick links on mobile?

Hello,

I would like to make the changed displayed in the picture, can someone help me?

Thank you!

URL: https://suq5b8csct01fyzg-61270851797.shopifypreview.com/

Im using the Trade theme.

Hi @KimGottwald ,

You can follow these steps to make the effect

  1. Open Online Store > Theme > Edit Code

  2. Find and open the base.css (or theme.css, custom.css) file

  3. Paste the code snippet below at the bottom of the file and hit save

@media screen and (max-width: 989px) {
    .footer-block__details-content .list-menu__item--link {
        /* You can change this value to your preference */
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
}

Here is the result

Hope this helps you solve the issue.

Please don’t forget to Like and Mark it as an Accepted Solution if you find this helpful. Thank you!

1 Like