How can I delete 'designed by' from my store's footer and fix my privacy policy link?

i am unable to remove ’ designed by’ from the footer of my store that was added by someone who tried to help design my store.

Also the privacy policy takes back to the top of the homepage

Screenshot 2023-11-23 143919.png

Hi @MirnaH

Would you mind to share your Store URL website? with password if its unpublish. Thanks!

teahao

Thanks for the info, check this one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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:
#shopify-section-sections--20756654489881__footer > footer > div.footer__content-bottom > div:nth-child(2) {
    display: none;
}
.footer__content-bottom-wrapper.page-width {
    padding-bottom: 20px;
    
}

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!