How to reduce the spacing between the footer menu buttons for pc and mobile version

Hello. How to reduce the spacing between the footer menu buttons for pc and mobile version? Can you please tell me the code? My theme Dawn.

Hey @Lambody ,

Go to your theme’s “Edit Code” Option, then in the search bar type “theme.liquid”
Below the tag “” tag paste the following. Screenshot attached for reference.


Screenshot is for reference only, the correct code to paste is the one shown above.

Hi @Lambody ,

You can try this code by following these steps:

Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code

Step 2: Search file base.css, theme.css or styles.css

Step 3: Insert the below code at the bottom of the file → Save

.list-menu__item--link {
   padding-bottom: 0!important;
   padding-top: 0!important;
}

@media only screen and (max-width: 989px) {
    .footer-block__details-content .list-menu__item--link {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

Hope this can help you

Thank you, all the codes work perfectly!) Thank you very much!

The code works. Thank you very much for your help!