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

    (@hcabrera)

    Hi there!

    To get rid of the space to the left, try the following:

    1. Go to Plugins > Editor and select WordPress Popular Posts from the dropdown.
    2. Click on wordpress-popular-posts/style/wpp.css to edit WPP’s stylesheet.
    3. Find:
      .wpp-list { /* UL element */
      
      }

      and change it to:

      .wpp-list { /* UL element */
        overflow: hidden;
        margin: 0!important;
      }
    4. Find:
      .wpp-list li {
        /*display:inline;*/ /* <-- uncommenting this line is recommended when using post thumbnails */
        float: right;
        clear: left;
      }

      and change it to:

      .wpp-list li {
        display:inline;
        float: left;
      }
    5. Hit the Update file button to save changes.
    6. Move the wpp.css stylesheet into your theme’s directory to preserve these changes across plugin updates. Otherwise, the next time you upgrade WPP all these modifications will be lost.

    About hiding the stats, I’m guessing you’re using the [wpp] shortcode? Just add stats_views=0 to it and you should be good to go.

    About displaying the excerpt above the image, I’m guessing you’re trying to emulate the same look & feel from the Neat Shots of the Month section, correct? If so, it’s completely doable. However, this falls a bit outside of the support scope I provide here (mainly bug fixes and feature requests). I’d be glad to help you style WPP so it looks like it, but for that I’d need access to your site to make the necessary changes. You’d be hiring me as well ?? If that’s OK with you, please get in touch with me.

    Thank for pointing me in the right direction (yeah this is also me, switched two different browser can’t remember the passwords ; _ ; )
    I found a really good use of that coding and shifted it elsewhere on the page.

    Ninja Edit: you can mark this as resolved

    Plugin Author Hector Cabrera

    (@hcabrera)

    Don’t mention it ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Stats Display’ is closed to new replies.