Archived topic
How to move the input boxes on comment section?
3 replies · Started by Jusung on July 29, 2022
Viewing posts 1–4 of 4
Hello.
When you see my website, on the comment section,
you can find the name, email and website listed vertically.
I want to get them in a line like 33% each.
Can you help me make this?
Hi there,
try this CSS:
@media(min-width: 600px) {
.comment-form {
display: flex;
flex-wrap: wrap;
}
.comment-form > input {
width: 20%;
flex-grow: 1;
max-width: unset;
}
.comment-form>.form-submit {
flex: 1 0 100%;
}
}
Thank you!
It perferctly works!!
Glad to hear that
This archived topic is closed to new replies.