• Resolved srg5960

    (@srg5960)


    I have placed the following code into my theme’s footer code but I’m having trouble figuring out how to center it.

    <?php echo do_shortcode(‘[DISPLAY_ULTIMATE_SOCIAL_ICONS]’); ?>

    Any help would be greatly appreciated.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello srg5960,

    Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.

    .sfsi_widget .norm_row {
      float: none;
      margin: 0 auto;
      position: relative !important;
    }

    Hope this will helps you.

    Thanks.

    Thread Starter srg5960

    (@srg5960)

    Thank you so much that worked perfectly. Is there any way to drop it down some or maybe bring the footer widget menus up? There is too much space between the plugin and the widgets.

    Hi there,

    Is there any way to drop it down some or maybe bring the footer widget menus up? There is too much space between the plugin and the widgets.

    You can try this code in your CSS:

    /* raise footer /*
    @media (min-width: 768px){
    .footer-widgets {
        padding-top: 0.235801em;}
    }

    See if that works and let us know if you need anything else related to this!

    Thread Starter srg5960

    (@srg5960)

    Thank you both for your help. It worked perfectly!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to center the Ultimate Social Media Icons plugin inside the footer.’ is closed to new replies.