On my Contact Us page, I want to have more space before ‘Input code below’ and less space after ‘Input code below’. I also want the Captcha field to be much shorter. How do I accomplish this?
Hi There,
Please try adding this custom CSS under Theme Options > CSS:
#wpcf7-f342-p38-o1 > form > p:nth-child(6) br {
display: none;
}
#wpcf7-f342-p38-o1 > form > p:nth-child(6) label {
margin-top: 25px;
}
input.wpcf7-form-control.wpcf7-captchar {
max-width: 150px;
margin-bottom: 15px;
}
input.wpcf7-form-control.wpcf7-submit {
clear: both;
display: block;
}
span.wpcf7-form-control-wrap.captcha-170 {
clear: both;
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Let us know how this goes!
Thanks and thanks for sharing the resources.
You are most welcome!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.