redeclipse
Member
Posted 2 years ago #
Hi, the icons are not aligning according to what we choose on the dropdown:
http://theforgottenlair.net/updates/
I want to have it align center.
Also, I had to manually fix it in the code, but making the links appear on new tabs/windows also was not working.
Thanks.
I'm having a similar problem. Icons align vertically NOT horizontally. Have setting at 32px images, no text. Not sure why it's doing this.
Well, it looks like my theme is putting all of the buttons into a "li style" that is shared with other elements in the css, so they are the width of the sidebar each. I "think" this is what's going on but have no idea how to fix it. These things always boil down to a theme styling issue. go figure
Håvard Persson
Member
Posted 1 year ago #
The problem is the float tag some themes use on the li.
Open the subscribe-connect-follow-widget.php file
Find:
case("32px"): {
return '<li style="display:inline;margin:0 5px 0 0"><a href="{url}" title="{description}"'.$target.'><img src="'.WP_PLUGIN_URL.'/subscribe-connect-follow-widget/images/32px/{image}" alt="{name}" height="32px" width="32px" /></a></li>';
}
Change to:
case("32px"): {
return '<li style="display:inline;float:none;margin:0 5px 0 0"><a href="{url}"><img src="'.WP_PLUGIN_URL.'/subscribe-connect-follow-widget/images/32px/{image}" alt="{name}" height="32px" width="32px" /></a>';
}