Icons are all vertical?
-
Hi the icons are stacked in a vertical column, I was hoping they would appear in horizontal rows. I changed the sizes and nothing made a difference. is there a CSS snipet I can add to fix this?
-
Do you have the option set to show the labels next to each icon? Or just showing the icons?
No I don’t have that option, just Icons
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;
}Sorry, I just found a different plugin instead
That is funny, I just found the same one!
Thanks.
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>'); ?>
The topic ‘Icons are all vertical?’ is closed to new replies.