Align Social Icons in mobile footer

Was wondering if someone could help out. I use the Palo Alto theme, was wondering how I can align both the social media icons and the “copyright 2022” blurb to the center of my footer on mobile. They are already centered on desktop but do not center on mobile for some reason. My website is Slopesilver.com.

Thanks in advance for any help!

From about 12noon today GMT, any notification sent from Shopify appears to have the email body missing when viewed from Outlook on the desktop version. However when viewing Outlook in 365 web version the email body is normal and visible.

Our customers are noticing this too. Does anyone else know of or have experienced this issue?

James

Hello @slopeyslopey

  1. Open code editor

  2. Paste below css at the bottom of the file ‘Assets > theme.css or theme.css.liquid’

@media only screen and (max-width: 767px){
 .site-footer .footer-copyright {
  text-align: center;
 }
 .site-footer .social-sharing-wrapper {
  justify-content: center !important;
 }
}

Regards

1 Like

Worked! thanks