• I have the widget placed in a sidebar and I would like to have the post content appear under the thumbnail image when the written content surpasses the edge of the bottom of the thumbnail image. In other words, I wish to eliminate the empty white space column below the thumbnail and use it for the post content to “wrap” the content below it as well. I’ve used firebug and tried the following CSS code:

    div.srp-thumbnail-box {
    display: table-cell !important; padding-bottom: 10px !important; padding-right: 10px !important; vertical-align: top !important; margin-bottom:10px;
    }

    with no luck. Adjusting the padding-right works but adjusting padding-bottom or margin-bottom does nothing. Am I missing something? Thanks in advance.

    http://wordpress.org/extend/plugins/special-recent-posts/

Viewing 1 replies (of 1 total)
  • Plugin Author Luca Grandicelli

    (@lgrandicelli)

    Wrapping the text around the thumbnail requires a change in the outputted html, which at the moment is not available. You can put the entire content below the thumbnail by switching from “display: table.cell” to “display: block” for both the thumbnail container and the content container.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Special Recent Posts] Post content text under thumbnail image’ is closed to new replies.