I can't remove this part under the footer pls help me
![]()
Main issue: A section/element persists under the footer on a Shopify store (mehqclo.com), and the owner wants it removed. Screenshots were shared to show the unwanted area and an example of the expected result.
Context: The store uses Shopify themes. Edits are suggested in theme stylesheet files (base.css/style.css/theme.css) and possibly in the main layout file (theme.liquid). CSS selectors target elements inside MainContent.
Proposed fixes:
main#MainContent button#checkout-button, main#MainContent button#return-home { display: none !important; }.#MainContent #return-home { display: none; } and #MainContent #checkout-button { display: none; } in base.css.Current status: The first CSS attempt did not remove the element for the store owner. Alternative CSS was provided; no confirmation of success yet. Discussion remains open with unresolved outcome. Images are central to illustrate the issue and the proposed result.
Please, share your store URL. Thanks!
please share your store URL so we can check
Please share your website url.
Thanks for the info, check this one.
main#MainContent button#checkout-button, main#MainContent button#return-home {
display: none !important;
}
And Save.
Result:
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!
Edit theme code, add the following code to the bottom of base.css
#MainContent #return-home {
display: none;
}
#MainContent #checkout-button {
display: none;
}
Try to paste it on the theme.liquid.
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!