Site logo

Archived topic

comment section placeholders

1 reply · Started by Manideep on October 10, 2022

Viewing posts 1–2 of 2

I have removed the Website URL placeholder from the common section.

Name and email placeholder are up and down, but I need name and email placeholders side by side like the reference website I have shared below.

I want my website's common section to look like a reference website I have shared.

reference website: https://tinyurl.com/2mbfleo3

Thank You.

Hi there,

try adding this CSS:


.comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.comment-form :not(input) {
    flex: 1 0 100%;
}
.comment-form input {
    flex-basis: calc(50% - 5px);
}
This archived topic is closed to new replies.