Remove unwanted app blocker from footer section (Theme customization)

Topic summary

Issue: An unwanted white “app blocker”/white space appeared in the Shopify store’s footer (shown in a screenshot), and the user asked how to remove it.

Info provided: A helper requested the store URL; the user shared outsid3rclo.com.

Solution: A contributor advised editing the theme stylesheet (base.css) via Online Store → Theme → Edit code, then appending the CSS rule: .footer { margin-top: 0px !important; } at the bottom and saving.

Effect: Forcing the footer’s top margin to 0 removes the white block/gap at the top of the footer, restoring the layout.

Outcome: The original poster confirmed the fix worked and expressed thanks.

Status: Resolved; no further action or open questions were identified.

Summarized with AI on January 3. AI used: gpt-5.

Hello how do I remove that white unwanted app blocker from the footer section?

Hi,

Can you share your store URL to be able to assist you on this.

www.outsid3rclo.com

Hi @dreal1 ,

Simply follow these steps:

Navigate to Online Store → Theme → Edit code.
Search for the file “base.css.”
Paste the provided code at the bottom of the file.
Save your changes.

.footer {
    margin-top: 0px !important;
}

Thank you

it actually worked, thank you very much!