Social Icon Align Centre for Mobile Screen Size

Hello,
I have chose to have Social Icon’s centre to the left, but for a mobile screen size, it would great if they were to align in the centre. Is there any CSS so it can do this?

Kind Regards,

Matt

1 Like

Hello @Matthew :wave: Thank you for contacting us!

Here is the CSS code to center the widget on mobile:

@media (max-width: 480px) {
  [class*="social-icons-location-inline"] {
  display: flex!important;
  justify-content: center;
}
}

Please check it and let me know if it helped :slightly_smiling_face:

thank you, this works perfectly :slight_smile:

1 Like