Nobody else has the problem? It’s on every wordpress site of mine and it’s because of the plugin
Hello there,
I am having the same problem here. There is a white space showing that i recently noticed. You can see it here: http://www.guitaceltim.com/home
Any idea?
I saw that too !
I could fixed it but, unfortunately, i had to change a little thing in the plugin page because it is actually a div made to ensure other elements will go under the social ring plugin and not in the same line.
I try to do it in css but it was hard coded in the plugin files so i had to modify it a little…
If you’re interested, you can do it by open the libray.php file you can find in : plugins/wordpress-social-ring/includes/library.php
Go to line 174, you will find that :
$html .= '<div style="clear:both;"> </div><!-- Social Ring Buttons End -->'."\n";
Change to :
$html .= '<div style="clear:both;"></div><!-- Social Ring Buttons End -->'."\n";
I just remove the inside the div. That done the trick !
Thank you but there is already NO in my code:
$html .= ‘<div style=”clear:both;”></div><!– Social Ring Buttons End –>’.”\n”;
Kitefr, Tried your suggestion but it doesnt fix the issue.
What else could be done??
Also still have the problem
I had this problem too.
You can fix it with css:
.social-ring + div {
height: 1px;
}
🙂
Not know why it works for me and not for you actually… i will try to see why very soon !
Hello there, i have tried all your suggestions, but none have worked….