Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #529661

    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.

    #529898

    Hi DROR!

    Please add following code to Quick CSS

    #socket * {
        font-size: 14px;
    }

    Regards,
    Yigit

    #529921

    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?

    #530464

    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?

    #530857

    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

    #531405

    Can I put it below the copyright code so it won’t break on various screensizes ?

    #531839

    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

    #532007

    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?

    #533543

    Hey!

    move them up using this code:

    ul.noLightbox.social_bookmarks.icon_count_4 {
    margin-top: -16px !important;
    }
    

    Regards,
    Andy

    #533552

    Great. Thanks.

    #533639

    Hey!

    glad it’s working for you.

    Cheers!
    Andy

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘How to center align the socket social icons’ is closed to new replies.