You can add the CSS tweaks to the following interface of your site:
Appearance -> Customize -> Additional CSS
Hiding the Join Us Link in the Login Form Widget
Add the following CSS tweak to hide the Join Us link in the membership login form widget:
#wp_emember_loginForm .register_link{ display: none; }
Hiding the Forgot Password Link in the Login Form Widget
Add the following CSS tweak to hide the Forgot Password link in the membership login form widget:
#wp_emember_loginForm #forgot_pass{ display: none; }
Hiding the Remember Me Checkbox in the Login Form Widget
Add the following CSS tweak to hide the Remember Me checkbox in the membership login form widget:
#wp_emember_loginForm .eMember_remember_me{ display: none; }
Center Align the Member Login Form
Add the following CSS tweak to center align the member login form on the login page:
.wp_emember_loginForm { margin-right: auto; margin-left: auto; }
Leave a Reply