Hi, I would like to remove the reset button and “I forgot my User ID/Password” link from the login box. I have modified the password.php in the theme folder, but I am unable to find where the code for the login box is. Thanks
I have now removed the button and link but I would also like to remove the two outer borders around the login form and the word login. I would also like to remove “The page you are trying to view is password protected.” From the top and reduce the padding around the form.
#loginform p.logon_link { display: none; } ` To change borders and paddings find `#loginform` and `#loginform fieldset` in your theme's css and change the appropriate properties.
Add this to your stylesheet: ` #passwordform p { display: none; } ` The margins (the loads of white space) can also be changed in the `#loginform` selector.
Comments
I have now removed the button and link but I would also like to remove the two outer borders around the login form and the word login. I would also like to remove “The page you are trying to view is password protected.” From the top and reduce the padding around the form.
`
fieldset#logon_box legend {
display: none;
}
fieldset#logon_box fieldset legend {
display: block;
}
#loginform p.logon_link {
display: none;
}
`
To change borders and paddings find
`#loginform` and
`#loginform fieldset` in your theme's css and change the appropriate properties.
There is just one thing I am still struggling with, I still have;
"The page you are trying to view is password protected."
Above the login box with loads of white space. I am using the default template and this doesn't seem to be in the password.php or the theme css
Add this to your stylesheet:
`
#passwordform p {
display: none;
}
`
The margins (the loads of white space) can also be changed
in the `#loginform` selector.
fretzl YOU ARE THE MAN!!
Thanks for all your help.