• Resolved GK15

    (@gk15)


    Hi, I am using WordPress (4.5.3) and I have just upgraded to wordpress popular posts plugin (3.3.4). Now I have a problem that I did not have before. There is a large blank space between the heading of the list (“popular posts”) and the first item of the list of popular posts. (I tried to show below how the list is diplayed)

    Popular posts (heading)
    Blank Line
    Blank Line
    Blank Line
    Blank Line
    …….
    Post 1
    Post 2
    Post 3
    ……

    My site’s URL is http://www.gurkankilicaslan.com and the popular posts (“Çok okunanlar” in Turkish) is on the right hand side of the page.

    https://wordpress.org/plugins/wordpress-popular-posts/

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

    (@hcabrera)

    Hi there!

    It’s the same issue you reported some time ago. Just follow these instructions and you’ll be good to go.

    Thread Starter GK15

    (@gk15)

    Hello, yes I am aware of this but the previous time the command lines were like this:
    float:none;
    clear:left;

    Now I have this one:
    overflow:hidden;
    float:none;
    clear:both;

    That’s why I asked what I should do. Sorry I have no idea about these command lines 🙁

    And I tried the following two methods but it did not work or I did something wrong
    1) overflow:hidden;
    /*float:none;*/
    /*clear:both;*/
    2) /*overflow:hidden;*/
    /*float:none;*/
    /*clear:both;*/

    Thank you very much

    Plugin Author Hector Cabrera

    (@hcabrera)

    Alright, here’s what you currently have:

    /* LI - Post container styles */
    .wpp-list li {
        overflow:hidden;
        float:none;
        clear:both;
    }

    Change that to:

    /* LI - Post container styles */
    .wpp-list li {
        overflow:hidden;
        float:none;
        /*clear:both;*/
    }

    That should do it.

    Remember, you must move the modified wpp.css file from the plugin’s folder (wp-content/plugins/wordpress-popular-posts/style/) to your theme’s folder (wp-content/themes/default) to prevent plugin updates from overwriting these changes.

    Thread Starter GK15

    (@gk15)

    Hello, I made the change and I see that it is updated, but I still have the same problem.

    Thread Starter GK15

    (@gk15)

    Hello again,

    It seems OK now! I had shut down the laptop last night. When I turned it on this morning, the problem was gone. Thank you very much for your help.

    Best wishes

    Thread Starter GK15

    (@gk15)

    Thanks again.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘A large blank space between the heading & the list’ is closed to new replies.