How Do I Decrease The Space Here In My Footer?

Topic summary

A user seeks to reduce excessive vertical spacing in their store’s footer, specifically between the country/region selector and the Refund Policy link.

Three solutions were provided:

  1. DaisyVo’s approach: Add CSS via Shopify admin → Customize → Theme settings → Custom CSS, targeting .footer__content-top.page-width with padding-bottom: 0 !important;

  2. niraj_patel’s method: Insert CSS directly in theme.liquid file before the </body> tag, with media queries specifically for mobile screens (max-width: 767px), addressing both .footer__content-top and .localization-form padding.

  3. EstherBui’s solution: Add the same CSS rule to the end of the base.css file in the theme’s code editor.

All three solutions use similar CSS targeting footer padding. The user is working with the Shrine theme on Shopify. Each responder included screenshots showing the expected results. The discussion remains open with no confirmation from the original poster about which solution worked.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

Hey, I would like to decrease the space between the country/region selector and the Refund Policy. Thank you!

https://charmente.com/

Hi @Simon159 ,

You can follow the steps here:

Step 1: Shopify admin > Online store > Customize: https://prnt.sc/XQ6IDB99kUCd
Step 2: From the left menu > Theme settings > Open Custom CSS: https://prnt.sc/ypQ7nly2wv27
Step 3: Copy the code below and paste it there

Here is the code for step 3:

.footer__content-top.page-width {
    padding-bottom: 0 !important;
}

Here is the result:

Please let me know if it works!

Best,

Daisy

hello @Simon159 I checked you are using shrine theme for your store so

You can add code by following these steps to remove unwanted space on footer

  1. Go to Online Store → Theme → Edit code.

  2. Open your theme.liquid file

  3. Paste the below code before on theme.liquid

@media screen and (max-width: 767px) { .footer__content-top { padding-bottom: 0rem !important; } .localization-form:only-child,.footer__localization{ padding: 0 !important; } }

Hi Simon159

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file base.css and add this code at the end of the file

.footer__content-top.page-width {
    padding-bottom: 0 !important;
}

Result:

Best,
Esther