Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #49019
    Jacopo
    Participant

    Hello, i need to center the social widget in the footer area one of my site, but i don’t find any option.

    This is the screenshot of my site, as you can see the social widget is align to the left, i need to center if possible.

    social widget

    Thank you
    Jacopo

    #49048
    Sakin
    Keymaster

    @Jacopo: Can you post in your site URL?

    #49050
    Sakin
    Keymaster

    @Jacopo: can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #supplementary.one {
        text-align: center;
    }
    #supplementary .widget-area {
        display: inline-block;
        float: none;
    }
    #49070
    Jacopo
    Participant

    My site is still under construction and in maintenance mode, if you need the url I open it temporarily.

    Thank you for your custom css, works like a charm. Remains only a problem in the portrait display on mobile phone.

    #49108
    Sakin
    Keymaster

    @Jacopo: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    ul.social-profile li {
        display: inline-block;
        float: none;
    }
    #49121
    Jacopo
    Participant

    Thank’s Sakin, i resolved the issue with your Custom CSS, but i change float: left; with center:

    ul.social-profile li {
        display: inline-block;
        float: center;
    }

    Regards,
    Jacopo

    #49125
    Sakin
    Keymaster

    @Jacopo: Sorry I forgot. It should be float: none; There is no attribute like float: center.

    #49129
    Jacopo
    Participant

    Ok i correct to float: none; and it’s ok, thank’s and merry christmas!

    #49132
    Sakin
    Keymaster

    @Jacopo: Thank’s and Merry Christmas 🙂

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Help to center the social widget in footer area one’ is closed to new replies.