Hi Lucas!
That sounds like a different issue to me. However, I’m not near a computer now so I can’t check it out at this moment. I’ll get back in a few hours -it’s almost 11 pm here- once I get to the office.
Alright, the commit you linked to fixed some empty spaces created by empty HTML tags coming from WPP. There was an empty A tag if the thumbnail option wasn’t enabled, and something similar happened if there were no options enabled under the Stats Tag section. Both of these issues where solved with that fix, so unless you’re running a older version of the plugin I’m pretty sure it’s not your case.
Please share your site’s URL so I can go take a look.
Hi Hector, thanks for the attention.
The url is exorbeo.com
Thanks for sharing the URL. This style is what’s adding the extra space on your popular list: screenshot. Your theme is adding a padding style to every A tag inside a list for every widget, which is causing the effect you’re seeing there.
A quick workaround would be to add the following CSS block to your theme’s stylesheet (style.css):
.wpp-list li a {
padding-left: 0!important;
}
Yes, that seems to be the problem. When I applied the CSS block, the space got shorter, but still there.
Try changing the style to this:
.wpp-list li a {
padding: 0!important;
}
Yep, that did it. Thank you, Hector!