Danke für Deine Antwort. Hatte ich auch überlegt. Nicht mit CSS3, wegen der ausschließlichen Unterstützung durch modernste Browser, aber mit einem angepassten Template.
Vielleicht etwas in diese Richtung? (Nicht getestet)
PHP-Code:
<!-- indexer::stop -->
<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 foreach($this->faq as $category): ?>
<h2><?php echo $category['headline']; ?></h2>
<ul class="<?php echo $category['class']; ?>">
<?php $maxcount = 1; ?>
<?php foreach ($category['items']): ?>
<?php $maxcount++;>
<?php endforeach; ?>
<?php $faqid = mt_rand(1,$maxcount); ?>
<li><a href="{{faq_url::<?php echo $maxcount; ?>}}" title="{{faq_title::<?php echo $maxcount; ?>}}">{{faq_title::<?php echo $maxcount; ?>}}</a></li>
</ul>
<?php endforeach; ?>
</div>
<!-- indexer::continue -->
Das Problem ist nur, dass man dem Modul FAQ-Liste kein angepasstes Template zuweisen kann. Alle Änderungen in der mod_faqlist.xhtml würden sich global auswirken ...
Gruß Alex