• Resolved sjmsing

    (@sjmsing)


    Your plugin looks like it will do exactly what I would like. It is not showing any posts for me. It will show my custom title and lines equal to the number of posts which fit the selected criteria. I have left all the criteria at default values and I get the title and 10 lines (default value). I select authors, and/or categories and/or tags and I get the title and lines equal to posts which fit the selected criteria but no posts. Suggestions are appreciated. I have left the plugin active, you can see the results at the bottom of the right sidebar at http://www.BarTaste.com Thanks

    http://wordpress.org/extend/plugins/posts-in-sidebar/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Aldo Latino

    (@aldolat)

    The “problem” is in the CSS of your theme. At line nr. 1138 of your style.css you have:

    .sidebar p {
    font-size: 0;
    margin: 0 0 0;
    }

    Edit font-size into something different from 0, for example inherit:

    .sidebar p {
    font-size: inherit;
    margin: 0 0 0;
    }

    If for whatever reason you must leave it as is, you could add this rule at the end of your style.css:

    .sidebar .posts-in-sidebar p {
    font-size: inherit; /* Or what you prefer */
    }

    Bye! 🙂

    Thread Starter sjmsing

    (@sjmsing)

    Perfect! Thanks for the help and the quick reply. I’ve been looking for this type of plugin for a while.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Posts in Sidebar] No Posts, only Title & Lines’ is closed to new replies.