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
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
Hello @Matthew 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
thank you, this works perfectly