Is there a way to customize the look of the contact form. I want to put a semi transparent black background around the form to make it stand out.
You might be able to drop a color section from the advance layout editor and select a color. And then drop your form onto that.
Thanks, this is what I’m trying to do. Here is the page that has a form that I would like to have the same look as
http://academicaddiction.com/#
Here is the page I’m working on.
http://theaddictionsacademy.com/wp/
Thanks,
Steve
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home #av_section_1 .avia-builder-el-3 {
background-color: rgba(0,0,0,0.5);
padding: 10px;
border-radius: 5px;
}
and add custom background image to your color section
Cheers!
Yigit
Thanks, perfect! Can I use it on more then one page?
Hey!
Yes, you can give your Color Section element a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png and then add your contact form inside a 1/3 column element (like current example) and use the code as following
#your-custom-id .av_one_third { background-color: #e2e2e2; padding: 10px; border-radius: 5px; }
Regards,
Yigit
Thanks!