Hi I am trying to copy / mock this particular website — http://screencast.com/t/VseqHRk6
Question is how can I adjust or lower my contact form like the one from the website I am trying to replicate?
Hi benjamintlakey!
You can add background image to your contact form using following code in Quick CSS in Enfold theme options under General Styling tab
div#wpcf7-f3379-p734-o1 {
background-image: url(https://p1.pichost.me/i/58/1821360.jpg);
padding: 10px;
background-size: cover;
}
Best regards,
Yigit
Hi Yigit,
I am not talking about the background image, I am talking about the margin or lowering the contact form like from the example website. The contact form goes in between the slider wrap and the post wrap.
Thank you.
Hey!
Please add following code to Quick CSS instead
div#wpcf7-f3379-p734-o1 {
position: relative;
top: 100px;
}
Best regards,
Yigit
Yigit thank you so much! It works like a charm!