Hi, how can I move the social icons in the socket so they will be in the same line as the copyright text – http://screencast.com/t/sLN9ctuu4?
Also, how can I make the socket font and social icons bigger in the socket?
Thanks.
Hi DROR!
Please add following code to Quick CSS
#socket * {
font-size: 14px;
}
Regards,
Yigit
That made the font bigger but what about moving the social icons to the center so they will show to the left of the copyright text?
How can I move the social icons from the left so that they will show in the center to the left of the copyright text?
Hey!
You can add following code to Quick CSS
#socket ul.noLightbox.social_bookmarks {
width: 100%;
right: 30%;
}
But it probably will overlap copyright text on different screensizes. You can adjust the value using media queries
Best regards,
Yigit
Can I put it below the copyright code so it won’t break on various screensizes ?
Hey!
Add this in the Quick CSS field to keep it from overlapping on the smaller screens:
@media only screen and (max-width: 767px) {
#socket ul.noLightbox {
top: 40px;
margin-bottom: 0;
float: none;
position: absolute;
width: 100%;
text-align: center;
}
#top .social_bookmarks li {
float: none;
display: inline-block;
}
#socket .container {
padding-bottom: 20px !important;
}
}
Regards,
Ismael
It seems the social icons are not aligned with the text. Can I align them so the text would be in the middle of the social icons?
Hey!
move them up using this code:
ul.noLightbox.social_bookmarks.icon_count_4 {
margin-top: -16px !important;
}
Regards,
Andy
Great. Thanks.
Hey!
glad it’s working for you.
Cheers!
Andy