It looks like you have placed the above style in the readyclass.css file contained in the plugin directory, you should not modify the plugin files as any modifications will be lost during plugin updates. The correct place to put your custom CSS is towards the bottom of your own themes style.css file.
The reason your rule isn't affecting the last two fields is becuase they are not text inputs they are infact textarea's, so you need to add an extra selector to your rule like so
.gform_wrapper input[type=text], .gform_wrapper input[type=url], .gform_wrapper input[type=email], .gform_wrapper input[type=tel], .gform_wrapper input[type=number], .gform_wrapper input[type=password], .gform_wrapper textarea {
border: 1px solid #ccc;
}
Regards,
Richard
--
Just another member of the community helping out where I can
Posted 11 years ago on Sunday May 5, 2013 |
Permalink