Search code examples
authenticationpasswordsdotnetnuke

how to hide "reset password" button in dotnetnuke (login module)


I use DotNetNuke 7 and I want to hide login "password reset" button from the form .

How do I achieve this?


Solution

  • You can hide it with this CSS, either embedded into you portal.css file, or into the skin.css

    .dnnLoginActions {
        display: none;
    }