I created a form using the Contact Form 7 plugin. I replaced the label with an image. Now I want to display the label and the input field on the same line.
I am getting this result:
Currently the form looks like this.
I want to achieve this design:
How can I achieve that?
I tried CSS modification but this didn’t work for me.
New contributor
Provibe is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Try this in you css file:
.wpcf7-form p {
display: flex;
}