Please Help!!
I'm not able to get the Text to appear within the form. What needs to be done? I'm new with CSS. The form is located at http://www.maryrileycasaforjudge.com/dev/volunteer/
Thank you very much.
Please Help!!
I'm not able to get the Text to appear within the form. What needs to be done? I'm new with CSS. The form is located at http://www.maryrileycasaforjudge.com/dev/volunteer/
Thank you very much.
It appears your theme isn't enqueuing the necessary CSS and Javascript which is why the form doesn't appear properly.
How are you displaying the form? Are you using the shortcode in a post or are you displaying the form using the function call?
Also make sure have the Output CSS option on the Settings page set to Yes.
Thanks for your super-quick response!
I set the Output CSS option to "Yes."
THe theme I'm using is the Anchor Child from iThemes along with Builder. I'm using shortcode - [gravityform id=2 name=VolunteerForm title=false description=false ajax=true]
OK. I figured it out. In my Theme's style.css file, I just needed to comment out the following:
label {
font-weight: bold;
<!--color: #FFFFFF;-->
If you're going to comment something in your CSS file, the comment syntax is different than HTML. The example you have above is incorrect.
This is the proper way to comment CSS
label {
font-weight:bold;
/* color:#fff */
}Thanks Kevin.