Guest Posted March 5, 2024 Posted March 5, 2024 button.raised.cancel.block.btnForgotPassword.emby-button {display: none; } Hi when upgrading to the embyserver version above this code broke and I would like a new code to hide (remove) the button marked in the image. Thank you so much for that.
Guest Posted March 5, 2024 Posted March 5, 2024 button.btnForgotPassword {display: none} Hi, just made a small change to the CSS code and it worked for me. Closing this topic. Thank you
Guest Posted March 6, 2024 Posted March 6, 2024 Hi, how can I hide the Forgot Password button at this point and change the name of localhost?
Happy2Play 9814 Posted March 6, 2024 Posted March 6, 2024 5 hours ago, Schem0t4pe said: Hi, how can I hide the Forgot Password button at this point and change the name of localhost? Easiest way to change Name is via the dashboard three dot menu and change server name Forgot password (adjust to how many cards you have) div.view-startup-login div.itemsContainer div:nth-child(3) {display: none;}
K22R8CT 25 Posted March 17, 2025 Posted March 17, 2025 On 3/6/2024 at 3:01 PM, Happy2Play said: div.view-startup-login div.itemsContainer div:nth-child(3) {display: none;} This only works when 1 user is displayed on the login screen. If 2 users are displayed it will hide "manual login" instead. If more than 2 are displayed it will hide a user.
Happy2Play 9814 Posted March 17, 2025 Posted March 17, 2025 (edited) 2 hours ago, K22R8CT said: This only works when 1 user is displayed on the login screen. If 2 users are displayed it will hide "manual login" instead. If more than 2 are displayed it will hide a user. True Quote Forgot password (adjust to how many cards you have) Correction: Okay a little change to target last child. div.view-startup-login div.itemsContainer div.squareCard:nth-last-child(1) {display: none;} Edited March 17, 2025 by Happy2Play 1 1
K22R8CT 25 Posted March 18, 2025 Posted March 18, 2025 (edited) I swear I did that yesterday before posting and it didn't work. Figured I'd look into it when I had time. Must have been a typo or something equally silly. Thanks! So the following two lines should hide "forgot password" in all cases: .btnForgotPassword { display: none !important; } div.view-startup-login div.itemsContainer div.squareCard:nth-last-child(1) {display: none;} Edited March 18, 2025 by K22R8CT
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now