Hi there,
Hmm, the CSS in the feed code includes a 5 pixel margin as spacing, perhaps the CSS isn’t being used or displayed properly? It might depend on the RSS reader perhaps.
Would offering a padding option help, or make no difference?
To test, simply edit the plugin code below, and increase the 5px to 10px or 20px:
function firss_eval_css($featured_images_in_rss_css) {
switch ($featured_images_in_rss_css) {
case “left-above”:
$featured_images_in_rss_css_code = ‘display: block; margin-bottom: 5px;’;
break;
case “centered-above”:
$featured_images_in_rss_css_code = ‘display: block; margin: auto; margin-bottom: 5px;’;
break;
case “left-wrap”:
$featured_images_in_rss_css_code = ‘float: left; margin-right: 5px;’;
break;
case “right-wrap”:
$featured_images_in_rss_css_code = ‘float: right; margin-left: 5px;’;
break;
default:
$featured_images_in_rss_css_code = ‘display: block; margin-bottom: 5px;’;
break;
}
return $featured_images_in_rss_css_code;
}
changed as suggested to 20px and it makes no difference, the image is still bunched up to the text you can see it here http://worldpropertyfinder.com/feed/
Sorry, just saw your reply. It looks ok to me now, it was probably a cache issue.