Not all elements are centered
-
I am really struggling to get elements of my form centered.
I’ve gotten the fields to center, but then randomly the title for my multiple choice is left aligned. My drop down options are left aligned while their titles are centered.After testing many different CSS suggestions I ended up turning to Copilot and it suggested this (which has aligned the most elements center):
.wpforms-container-full .wpforms-form input[type=text],
.wpforms-container-full .wpforms-form input[type=email],
.wpforms-container-full .wpforms-form textarea,
.wpforms-container-full .wpforms-form select,
.wpforms-container-full .wpforms-form .wpforms-field-multiple-choice .wpforms-field-label {
display: block;
margin: 0 auto;
width: 100%;
text-align: center;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.