Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Hector Cabrera

    (@hcabrera)

    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.

    Plugin Author Hector Cabrera

    (@hcabrera)

    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.

    Thread Starter lucascarder

    (@lucascarder)

    Hi Hector, thanks for the attention.

    The url is exorbeo.com

    Plugin Author Hector Cabrera

    (@hcabrera)

    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;
    }
    Thread Starter lucascarder

    (@lucascarder)

    Yes, that seems to be the problem. When I applied the CSS block, the space got shorter, but still there.

    Plugin Author Hector Cabrera

    (@hcabrera)

    Try changing the style to this:

    .wpp-list li a {
      padding: 0!important;
    }
    Thread Starter lucascarder

    (@lucascarder)

    Yep, that did it. Thank you, Hector!

    Plugin Author Hector Cabrera

    (@hcabrera)

    No problem ??

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Blank space before title’ is closed to new replies.