Viewing 3 replies - 1 through 3 (of 3 total)
  • John

    (@jbculpepper)

    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.

    John

    (@jbculpepper)

    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

    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>';
    			}

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Subscribe / Connect / Follow Widget] Text Align’ is closed to new replies.