Oh sorry, I wrote that myself into the “HTML to display before each list item:” area. Thats really embarrassing :-/
Nevertheless… what I need ist an anchor that surrounds the whole single excerpt item so that the title, the thumbnail and the except text is clickable as one item. Here is my html so far:
<div class="crp_inner">
<a href="permalink" class="crp_title">Headline</a>
<a href="permalink">
<img src="" alt="" title="" class="crp_thumb crp_featured" height="175" width="260">
</a>
<span class="crp_excerpt">
<a href="parmalink">Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</a>
</span>
</div>
In that example every element of the excerpt has it’s own anchor. I hope it is clearer now what I’m trying to achieve, sorry again and thank you for your time!