gebe in CSS #page keine fixe width sondern vlt. 60% Besser ist auch wenn du die Seite mittg ausrichtest mit margin:0px auto; Habe es gerade mit Firebug ausprobiert und es sieht gut aus :)

...zur Antwort
$(document).ready(function() {
                $(".kommentarabschicken").click(function(){
                      sendComments();
                });

                $(".kommentaroeffnen").click(function(){
                      sendComments();
                });


}); //doc ready ende


function sendComments(){
  if($(".kommentareingabe").val() != "") {
                            $.ajax({
                                type: "POST",
                                url: "kommentare.php",
                                data: "kommentareingabe=" + $(".kommentareingabe").val(),
                                cache: false,
                                success: function(html){
                                        $(".scroll").html(html);
                                        $(".kommentareingabe").val();
                                }
                                });
                        }
                        return false;
                    });
}
...zur Antwort
Weitere Inhalte können nur Nutzer sehen, die bei uns eingeloggt sind.