Additional Fields. TextArea CSS bug
-
I thing, a have found a typos in your code. The css style for text area field applies to the label.
Index: rpr-login.php =================================================================== --- rpr-login.php (revision 696263) +++ rpr-login.php (working copy) @@ -680,12 +680,12 @@ } if ( 'textarea' === $meta_field['display'] ) { if ( empty( $show_custom_textarea_fields ) ) - $show_custom_textarea_fields = '#' . $meta_key . '-label'; + $show_custom_textarea_fields = '#' . $meta_key ; else - $show_custom_textarea_fields .= ', #' . $meta_key . '-label'; + $show_custom_textarea_fields .= ', #' . $meta_key ; } if ( 'text' === $meta_field['display'] ) { - if ( empty( $show_custom_textarea_fields ) ) + if ( empty( $show_custom_text_fields ) ) $show_custom_text_fields = '#login form #' . $meta_key . '-p'; else $show_custom_text_fields .= ', #login form #' . $meta_key . '-p';
I also think you should make font-size some smaller for Additional Textarea Fields and Description Field (how about 14px?)
https://www.ads-software.com/extend/plugins/register-plus-redux/
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Additional Fields. TextArea CSS bug’ is closed to new replies.