Login Page - Customization

is there any option to remove header and footer menu in login page at frappe cloud -ERP Next

Hi @robin_mathai_qzolve,

That for, please go to the Website Settings and HTML Header, Robots and Redirects Section.

Then apply the style like

<style>
nav.navbar.navbar-light.navbar-expand-lg {
    display: none;
}

footer.web-footer {
    display: none;
}
</style>

Then click on Clear-Cache and reload (Ctrl + Shift + R) and check it.

Output:

I hope this helps.

Thank You!

4 Likes