Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Daniel

    (@dannisbet)

    Do you have the option set to show the labels next to each icon? Or just showing the icons?

    Thread Starter squabster

    (@squabster)

    No I don’t have that option, just Icons

    Plugin Author Daniel

    (@dannisbet)

    By default, if you don’t have the labels next to each icon, it should line the icons up horizontally until it needs to make a line break (just like the Screenshots tab). It may be a CSS setting within your theme that’s altering it.

    Do you have a link to your page with the widget?

    Did this get resolved? I am having the same issue.

    I saw this on another post but it didn’t work for me:

    #bottom-sidebar .social-icons-widget ul {
    text-align: justify;
    padding-left: none;
    margin-bottom: 0;
    }

    #bottom-sidebar .social-icons-widget ul:after {
    content: ”;
    display: inline-block;
    width: 100%;
    }

    #bottom-sidebar .social-icons-widget ul:before {
    content: ”;
    display: block;
    margin-top: -1.25em;
    }

    #bottom-sidebar .social-icons-widget li {
    color: #fff;
    display: inline-block;
    font: 1em/1.5 sans-serif;
    margin-right: -.25em;
    padding: .75em .5em;
    position: relative;
    float: none;
    border-top: none;
    }

    Thread Starter squabster

    (@squabster)

    Sorry, I just found a different plugin instead

    http://synved.com/wordpress-social-media-feather/

    That is funny, I just found the same one!

    Thanks.

    splur

    (@splur)

    Although you already found your solution, I figure I might as well post the solution for this plugin here. This happened to me as well, and I found out it was actually the result of my theme not creating widgets with proper class identifiers and the plugin depending on the theme in classing its widgets (not explicitly including aside/div class tags on its own).

    An easy fix is to go to the social-media-icons-widget/lib/widget.php and changing the opening_tag and closing_tag lines to this:

    <?php echo apply_filters('social_icon_opening_tag', '<aside class="social-icons-widget"><ul class="'.$ul_class.'">'); ?>

    <?php echo apply_filters('social_icon_closing_tag', '</ul></aside>'); ?>

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Icons are all vertical?’ is closed to new replies.