Hallo
Habe das Problem im IE6, IE7 und im IE8.
habe jetzt aber eine Lösung gefunden welche zwar nicht sehr sauber ist aber funktioniert.
PHP-Code:
<?php $i = true; ?>
<?php foreach ($this->elements as $element): ?>
<?php if ($element['url']): ?><a <?php if ($element['url_fullsize']): ?> rel="lightbox"<?php endif; ?> href="<?php echo $element['url_link']; ?>"<?php if ($element['url_title']): ?> title="<?php echo $element['url_title']; ?>"<?php endif; ?><?php if ($element['url_window']): ?> onclick="this.blur(); window.open(this.href); return false;"<?php endif; ?>><?php endif; ?>
<img <?php if($i == false): ?>style="display:none;" <?php endif; ?> src="<?php echo $element['src']; ?>" alt="<?php echo $element['alt']; ?>" /><?php if ($element['url']): ?></a><?php endif; ?>
<?php $i = false; ?>
<?php endforeach; ?>