Index: typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php =================================================================== --- typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php (revision 2798) +++ typo3/sysext/css_styled_content/pi1/class.tx_cssstyledcontent_pi1.php (working copy) @@ -708,7 +708,12 @@ } // Render one image - $imageSpace = $origImages[$imgKey][0] + $border*($borderSpace+$borderThickness)*2; + if($origImages[$imgKey][0]==0) { + $imageSpace=$this->cObj->data['imagewidth'] + $border*($borderSpace+$borderThickness)*2; + } else { + $imageSpace = $origImages[$imgKey][0] + $border*($borderSpace+$borderThickness)*2; + } + $GLOBALS['TSFE']->register['IMAGE_NUM'] = $imgKey; $GLOBALS['TSFE']->register['IMAGE_NUM_CURRENT'] = $imgKey; $GLOBALS['TSFE']->register['ORIG_FILENAME'] = $origImages[$imgKey]['origFile'];