Tagged: social media
Dear Kriesi,
In my website (link below), how can I get the social media icons in the footer socket to sit in the center, underneath the Copyright text?
Thanks, Richard
Hey Richard,
Go to Enfold > General Styling and add this css code in Quick CSS:
#socket .social_bookmarks {
margin-left: 0 !important;
text-align: center;
}
#socket .social_bookmarks li {
display: inline-block;
float: none;
}
Hope this helps :)
Best regards,
Nikko
Thanks Nikko,
I’ve added this css but I’m afraid the social media icons are still displaying on the left, not centered.
Best wishes,
Richard
Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
#socket .social_bookmarks {
float: none;
clear: both;
margin: auto!important;
}
Best regards,
Yigit
Great, thanks Yigit