footer

I can't remove this part under the footer pls help me

 

abdullahmehdi_0-1730744557130.png

1 Like

Hi @abdullahmehdi

Please, share your store URL. Thanks!

Hi @abdullahmehdi

please share your store URL so we can check

Hi @abdullahmehdi

Please share your website url.

https://mehqclo.com/

https://mehqclo.com/

Thanks for the info, check this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
main#MainContent button#checkout-button, main#MainContent button#return-home {
    display: none !important;
}

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!

I did what you said, I saved it but it's still there
 

abdullahmehdi_0-1730899955118.png

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.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “theme. Liquid” file. Find the tag and paste the code below before the tag.

  • And Save.

Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!