I have the following problem, if I insert the "read more" tag into a post (<!--more-->), then the following code will be generated (example)
<p> <a href="http://www.daemon.de/blog/2005/05/22/ads-quake/#more-36"><br />
<p class="serif"><strong>Weiterlesen »</strong>
</a>
</p>
In the konqueror browser this doesn't render to a working link.
If I edit the templates and remove the <p class="serif"> part, then it works as expected.
My blog is here: http://www.daemon.de/blog/
The template I am using is based on the default template.
Beside I think this is invalid HTML, it should better look like this:
<p class="serif"><a href="http://www.daemon.de/blog/2005/05/22/ads-quake/#more-36"><br />
<strong>Weiterlesen »</strong>
</a>
</p>
regads, scip