/* Useful on responsive designs where the icons are initially left or right aligned but you want them centered on smaller screens.
/* Place the following at the point you want to center them in your CSS file, e.g. after the 1023 or 768px media query */
.simple-social-icons ul {
float: none;
text-align: center;
}
.simple-social-icons ul li {
display: inline-block;
float: none !important;
}