• Hi,

    You plugin works almost flawlessly, but there’s one little thing in your CSS (in inc/core.php) that affects the main WordPress description (the one that’s generally rendered right under the WordPress blog-title).

    You have:

    #igit_rpwt_thumb, #description
    {
    	margin-left:0px;
    }
    #igit_rpwt_thumb, #description
    {
    	margin-left:0px;
    	border:1px solid
    }

    (there was a third location, but I seem to have deleted that inadvertently)

    Because “#description” is already in use, the best fix would be to use a unique ID. For me that was too much work (and your next update will overwrite it), so I changed it to:

    #igit_rpwt_thumb, .igit_relpost #description
    {
    	margin-left:0px;
    }
    #igit_rpwt_thumb, .igit_relpost #description
    {
    	margin-left:0px;
    	border:1px solid
    }

    http://wordpress.org/extend/plugins/igit-related-posts-with-thumb-images-after-posts/

  • The topic ‘[Plugin: IGIT Related Posts With Thumb Image After Posts] Small bug in CSS styles, showing border on’ is closed to new replies.