Last active
August 31, 2023 15:51
-
-
Save surefirewebserv/5621245 to your computer and use it in GitHub Desktop.
Center Simple Social Icons when doing responsive styles
I scouring the web for this. Thanks Jonathan!
Thanks!
Awesome snippet! I needed to add text-align: center; to the following style.
/* Align everything center */
.alignright,
img.alignright,
.aligncenter,
img.aligncenter,
.alignleft,
img.alignleft {
display: block;
margin: 0 auto 24px;
float:none;
text-align: center;
}
Thanks man, this is going straight into my Evernote file.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for this!