Login Form Labels in wrong position
-
The Login Form was showing labels in the wrong position (Beneath the relevant fields) – so I had to update the plugin code a little:
From:
<label for="log"><input type="text" name="log" id="log" value="' . esc_html ( stripslashes ( $user_login ) , 1 ) . '" size="22" /> ' . apply_filters( 'pr_username_label', 'Username' ) . '</label><br />
To:
<label for="log"><input placeholder="Username" type="text" name="log" id="log" value="' . esc_html ( stripslashes ( $user_login ) , 1 ) . '" size="22" /> ' . apply_filters( 'pr_username_label', '' ) . '</label><br />
- The topic ‘Login Form Labels in wrong position’ is closed to new replies.