How to centre footer link

Hi, go to the section-footer.css and replace styles for the .footer__content-bottom-wrapper class.

1. Access Your Shopify Admin Panel

1.Go to the Shopify website and log into your account.

  1. Click on the “Online Store” in the left sidebar.

  2. In the “Themes” section, find the theme you want to edit and click on “Customize”.

2. Edit the Theme’s CSS (Stylesheet)

  1. Go to the Online store - Themes - click on three dots, and in the theme customization menu, click on “Edit code”. This will take you to the code editor.

  2. Find the CSS file you want to edit.

  3. Click on the file to open it in the code editor.

footer__content-bottom-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}