ich habe nun einmal hinbekommen, vielleicht kann es jemand anderer auch brauchen. zu jedem listenpunkt wird eine eigene klasse hinzugefügt mit fortlaufender numerierung, wie im geposteten link im vorigem beitrag
PHP-Code:
<div class="<?php echo $this->class; ?> block"<?php echo $this->cssID; ?><?php if ($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
<?php if ($this->headline): ?>
<<?php echo $this->hl; ?>><?php echo $this->headline; ?></<?php echo $this->hl; ?>>
<?php endif; ?>
<<?php echo $this->tag; ?>>
<?php $i=0; ?>
<?php foreach ($this->items as $item): ?>
<?php $item['class'].=' counter_'.$i++; ?>
<li<?php if ($item['class']): ?> class="<?php echo $item['class']; ?>"<?php endif; ?>><?php echo $item['content']; ?></li>
<?php endforeach; ?>
</<?php echo $this->tag; ?>>
</div>