Hi all,
I've got 5 different forms on one install and I've been trying to style them independently. I've been searching the forums and it looks like I just need to specify the form ID in my css as I learned in this thread:
http://forum.gravityhelp.com/topic/different-styles-for-different-pages#post-1643
The examples given here worked like a charm on my form for changing the title, but for some reason I cannot get it to work on any other css within the form. I don't get it!
So, assuming my form is ID 6, I've entered this to change the title to green:
form#gform_6 .gform_heading h3.gform_title { color:green }
Works great, so then I did the same with the description and tried changing the font color:
form#gform_6 .gform_wrapper span.gform_description { color: red;font-weight:normal }
...but this has no effect. Why? Shouldn't it be working? In fact, a larger question I have is couldn't I just append form#gform_6
to every single style element in the css?
Can anyone explain why the above doesn't work?