Beitragsseiten


style.css - Kommentarformular formatieren


Formular-Überschrift formatieren
/*  Formularüberschrift comment-reply-title auf 1em und fett  */
h3.comment-reply-title {
    font-size: 1em;
    font-weight:bold;
}


Die Beschriftungen der Eingabefelder formatieren
/*   Beschriftungen der Eingabefelder comment-form label jeweils in einer eigenen Zeile  */
.comment-form label { display:block; }


Abstand am Ende des Formulars bis zum Seitenende vergrößern 
/* Innenabstand 2em | Außenabstand 1em und Bereiche mit hellgrauen Strich trennen  */
.comment-form {
    margin-bottom: 2em;
    padding-bottom: 1em;
   border-bottom: 1px solid lightgrey;
}