Footer Text to Centre using Craft Theme Version 8.0.1

How can i shift the copyright logo and text 2023 to the centre of the desktop page like the icons payment.

Pls assist.

Thanks.

@jsimk

share the URL.

deleted. Resolved. Thanks all for the help. Great Community.

Hey @jsimk
Kindly share your Store Password as well

Hi @jsimk

You can try following these steps to center the copyright logo and text on the desktop page:

  1. Locate the footer.liquid file in the theme section of your Shopify admin.
  2. Find the <div class="footer__column footer__column--info"> element in the file.
  3. Add the following code right below the <div class="footer__column footer__column--info"> Element:
<div class="footer__column">
  <style>    .footer__column.footer__column--info {
      align-items: center;
    }
  </style>
</div>

See my screenshot below:

After making these changes, save the file and check your website to see if the copyright logo and text are now centered on the desktop page.

deleted.

Hi,

Thanks for the reply. But it didn’t work. :disappointed_face:

In your case, it seem like it needs to update like the following:

  • Find this code line in “section-footer.css” in your theme and remove the “text-align: right”

add “flex-direction: column;” to the CSS selector: “.footer__content-bottom-wrapper”

1 Like

@jsimk

add below css into base.css file

.footer__content-bottom-wrapper {
    display: block !important;
}

.footer__content-bottom-wrapper:not(.footer__content-bottom-wrapper--center) .footer__copyright {
    text-align: center !important;
}

1 Like

Hello @jsimk ,

You can follow these steps:

  1. Go to Online Store->Theme->Edit code

  1. Open your theme.liquid file, paste the below code before


I hope the above is useful to you.

Kind & Best regards,
GemPages Support Team

Thanks it works now with Weaverse’s solution.

1 Like