igeoorge 26 Posted December 5, 2019 Posted December 5, 2019 Hi friends Previously I used the Code: / * ---- Remove forgot password ---- * / #loginPage h1 {display: none} #loginPage .btnForgotPassword {display: none; } body> div.skinHeader.skinHeader-withBackground.headroom.noHomeButtonHeader> div.headerTabs.sectionTabs> div> div> button: nth-child (1)> div, body> div.skinHeader.skinHeader-withBackground.headroom.noHomeButtonHeader> div .headerTabs.sectionTabs> div> div> button: nth-child (2)> div {display: none} to remove the "forgot password" button But unfortunately it has stopped working. Can anybody help me?
Solution Happy2Play 9444 Posted December 5, 2019 Solution Posted December 5, 2019 Do to page ids being removed from login page and the addition of manuallogin page, as it use to be just a form. /*Remove Forgot Password on Login page*/ [data-type="ForgotPassword"] {display: none; } /*Remove Forgot Password on Manual Login page*/ button.raised.cancel.block.btnForgotPassword.emby-button {display: none; } 1
Luke 40090 Posted December 5, 2019 Posted December 5, 2019 Just don't complain when you're locked out of your server with no way to reset your password
igeoorge 26 Posted December 5, 2019 Author Posted December 5, 2019 Do to page ids being removed from login page and the addition of manuallogin page, as it use to be just a form. /*Remove Forgot Password on Login page*/ [data-type="ForgotPassword"] {display: none; } /*Remove Forgot Password on Manual Login page*/ button.raised.cancel.block.btnForgotPassword.emby-button {display: none; } Hi @@Happy2Play Could you help me remove these buttons inside the green square? Thanks a lot for the help!
Happy2Play 9444 Posted December 5, 2019 Posted December 5, 2019 Hi @@Happy2Play Could you help me remove these buttons inside the green square? Thanks a lot for the help! Something like this. div.dynamicRoutes > div > div > button:nth-child(-n+4) {display: none; } 1
igeoorge 26 Posted December 5, 2019 Author Posted December 5, 2019 The Code has greatly reduced. Thank you! If you have some time, please, one last help. My code to remove this box is not working. button [data-id = "removefromcollection"] {display: none; } button [data-id = "addtocollection"] {display: none; } button [data-id = "groupvideos"] {display: none; } button.btnNewCollection {display: none; } button [data-id = "addtoplaylist"] {display: none; } How can I remove it?
Happy2Play 9444 Posted December 5, 2019 Posted December 5, 2019 The Code has greatly reduced. Thank you! If you have some time, please, one last help. My code to remove this box is not working. button [data-id = "removefromcollection"] {display: none; } button [data-id = "addtocollection"] {display: none; } button [data-id = "groupvideos"] {display: none; } button.btnNewCollection {display: none; } button [data-id = "addtoplaylist"] {display: none; } How can I remove it? Here is the multi-select label[data-action="multiselect"] {display: none;} Are you saying you have issues with this code also? button [data-id = "removefromcollection"] {display: none; }button [data-id = "addtocollection"] {display: none; } button [data-id = "groupvideos"] {display: none; } button.btnNewCollection {display: none; } button [data-id = "addtoplaylist"] {display: none; } If so, there are added spaces where there shouldn't be. button[data-id="removefromcollection"] {display: none; } button[data-id="addtocollection"] {display: none; } button[data-id="groupvideos"] {display: none; } button.btnNewCollection {display: none; } button[data-id="addtoplaylist"] {display: none; } 1
Guest Posted December 6, 2019 Posted December 6, 2019 Hi,This CSS didn't work for me ...label[data-action=multiselect] {display: none;}
Happy2Play 9444 Posted December 6, 2019 Posted December 6, 2019 Hi, This CSS didn't work for me ... label[data-action=multiselect] {display: none;} Don't see why, as that is what it is. <label data-action="multiselect" data-id="xxxxxxx7148b4d7c20a207c789xxxxxx" data-serverid="xxxxxx53cc0d4f4fb6c0480ef3xxxxx" class="chkCardSelectContainer cardOverlayButton cardOverlayButton-hover itemAction emby-checkbox-label"><input class="chkCardSelect emby-checkbox" is="emby-checkbox" type="checkbox" data-focushelper="false" data-embycheckbox="true"><span class="checkboxOutline"><i class="md-icon checkboxIcon checkboxIcon-checked"></i><i class="md-icon checkboxIcon checkboxIcon-unchecked"></i></span></label> But these should work also label.chkCardSelectContainer.cardOverlayButton.cardOverlayButton-hover.itemAction.emby-checkbox-label {display: none;} or div.cardOverlayContainer label {display: none;} or div.cardOverlayContainer label.emby-checkbox-label {display: none;}
Guest Posted December 7, 2019 Posted December 7, 2019 Don't see why, as that is what it is. [...] But these should work also label.chkCardSelectContainer.cardOverlayButton.cardOverlayButton-hover.itemAction.emby-checkbox-label {display: none;} or div.cardOverlayContainer label {display: none;} or div.cardOverlayContainer label.emby-checkbox-label {display: none;} I also tried the 3 new codes above and in all of them, same result, the checkboxes are still there using ES 4.3.0.30
Happy2Play 9444 Posted December 7, 2019 Posted December 7, 2019 (edited) I also tried the 3 new codes above and in all of them, same result, the checkboxes are still there using ES 4.3.0.30 Have you tested with only one of those codes in your Custom CSS box (removing all other css code)? Edited December 7, 2019 by Happy2Play
Happy2Play 9444 Posted December 7, 2019 Posted December 7, 2019 Exactly this way Can you post all your custom css or pm if you prefer.
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