Gotcha on where you are making your changes.
If you can see both in Firebug, and the style.css is not being used, then the plugin has a more specific rule. You need to get more specific with the styles in your style.css, or resort to using the !important declaration, which is the equivalent of the nuclear option. Sometimes, with some themes, that's all you can do.
I added this to the beginning of line 16 in your style.css:
[css]
.entry-content #gforms_confirmation_message {
and the forms.css styles were overriden. You need to add something more specific to style.css so that it overrides the forms.css. Or, add !important to each line, but getting more specific is better.
Good reference and explanation of specificity:
http://css-tricks.com/855-specifics-on-css-specificity/
Posted 13 years ago on Monday October 31, 2011 |
Permalink