Site logo

Archived topic

Change comment field order

3 replies · Started by Allen on September 4, 2021

Viewing posts 1–4 of 4

hi!

a) Can I know how can i move comment name field to top of comment text field? Currently its below comment text field.
b) How can I add some text before comment name field?
c) How can I add a text in front of published comment name? Refer screenshot

Thank you!

Hi there,

Let's handle one question at a time.

1. Try this CSS:

.comment-form {
    display: flex;
    flex-direction: column;
}
.comment-form #author {
    order: 1;
}
.comment-form-comment {
    order: 2;
}
.comment-form>.form-submit {
    order: 3;
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Great! Work nicely, added width to changed the length. Is this the right way?

b) How can I add some text before comment name field?
c) How can I add a text in front of published comment name? Refer screenshot

This archived topic is closed to new replies.