Hallo maxe, danke für deinen Tipp.
Ich hab mal in meine comments.php geschaut und da fehlte wirklich die id="comments".
Ich hab jetzt einfach aus dem Teil hier:
Code:
<div id="comments_header" class="clearfix">
<div class="f_right">
<?php if ('open' == $post-> comment_status) { ?><div id="comments_reply"><strong><a href="#respond" rel="nofollow">Kommentar schreiben</a></strong></div><?php } ?>
</div>
<div id="comments_num"><strong><?php comments_number('Keine Antworten', '1 Antwort', '% Antworten' );?></strong></div>
</div>
den Teil hier gemacht:
Code:
<div id="comments">
<div id="comments_header" class="clearfix">
<div class="f_right">
<?php if ('open' == $post-> comment_status) { ?><div id="comments_reply"><strong><a href="#respond" rel="nofollow">Kommentar schreiben</a></strong></div><?php } ?>
</div>
<div id="comments_num"><strong><?php comments_number('Keine Antworten', '1 Antwort', '% Antworten' );?></strong></div>
</div>
</div>
Und nun springt er auch zur richtigen Stelle. Das Design scheint sich auch nicht weiter verändert zu haben. Kann man das so lassen oder ist das eher die unsaubere Lösung?
Beste Grüße,
Manuel
Edit:
Oder wäre es besser aus dem <div id="comments_num"> eher <div id="comments"> zu machen und das in der css dementsprechend umzubenennen?