Customize wp_login_form
-
Hello,
as a non logged-in user you should see a login form in the header of the website that I linked with this thread.
I used this code to get it done:<?php if ( is_user_logged_in() ) { ?> <?php } else { ?> <?php wp_login_form( $args ); ?> <?php } ?>
Now I want to customise the appearance.
Some things I was able to change:
Align text and form to the right by this CSS:#loginform{ text-align: right; float: right; } #loginform #label{ display: none; }
I still want to remove the Description “Benutzername und E-Mailadresse” and “Passwort”
and put these Texts as a Placeholder inside the username and the password box.Unfortunately I don’t know how to do this.
I would really appreciate your help.
Thank you.The page I need help with: [log in to see the link]
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
- The topic ‘Customize wp_login_form’ is closed to new replies.