-
AuthorPosts
-
January 2, 2016 at 2:33 am #728377
Hi,
I was trying to do similar to https://community.theme.co/forums/topic/contact-form-7-not-formating-check-boxes-correctly/
and I was having same issue with the radio buttons not allowing any space.I tried the codePlease add this CSS to Customizer > Custom > CSS:
.wpcf7 input[type=”text”]{
margin-top:10px;
}and it didn’t work. I’m on the latest X and wp 4.3.
best
erinJanuary 2, 2016 at 2:34 am #728380This reply has been marked as private.January 2, 2016 at 2:51 am #728386Hello There,
Thanks for posting in and the very detailed information!
To adjust your input radio buttons in the contact form, please add the following css code in the customizer, Appearance > Customize > Custom > CSS
.wpcf7-radio .wpcf7-list-item { margin-left: 5px; margin-right: 20px; vertical-align: top; } .wpcf7-radio .wpcf7-list-item input[type="radio"] { margin-right: 5px; }
Feel free to adjust number of pixels. Hope this helps.
January 3, 2016 at 12:39 am #729209This reply has been marked as private.January 3, 2016 at 1:01 am #729249Hi there,
You should remove this CSS
.wpcf7 input[type="text"]{ margin-top:10px; }
It’s the one that causes the spaces.
Cheers!
January 3, 2016 at 2:49 am #729318thanks so much
that worked !!January 3, 2016 at 2:58 am #729327You’re welcome.
-
AuthorPosts