Alexwerilles 3 Posted July 6, 2021 Author Posted July 6, 2021 Sorry for not thanking the previous solution, it's because I have another topic open here and I get lost. this code no longer works properly in the current version of Emby (4.6.3). When it is active, the "Continue Watching" option disappears from the home page /*Remove Emby Web from Settings page*/ body > div.mainAnimatedPages.skinBody > div > div > div > div > h3:nth-child(3), body > div.mainAnimatedPages.skinBody > div > div > div > div > div:nth-child(4) {display: none !important;}
Happy2Play 9444 Posted July 6, 2021 Posted July 6, 2021 5 hours ago, Alexwerilles said: Sorry for not thanking the previous solution, it's because I have another topic open here and I get lost. this code no longer works properly in the current version of Emby (4.6.3). When it is active, the "Continue Watching" option disappears from the home page /*Remove Emby Web from Settings page*/ body > div.mainAnimatedPages.skinBody > div > div > div > div > h3:nth-child(3), body > div.mainAnimatedPages.skinBody > div > div > div > div > div:nth-child(4) {display: none !important;} Here you go body div.mainAnimatedPages div div div div h3.navMenuHeader:nth-child(3), body div.mainAnimatedPages div div div div div.navDrawerItemsContainer:nth-child(4) {display: none;}
Alexwerilles 3 Posted July 6, 2021 Author Posted July 6, 2021 1 hour ago, Happy2Play said: Here you go body div.mainAnimatedPages div div div div h3.navMenuHeader:nth-child(3), body div.mainAnimatedPages div div div div div.navDrawerItemsContainer:nth-child(4) {display: none;} How to remove "Emby Web" from the settings page? I mean the settings page and not the drawer. this code does not remove Emby Web from the settings page
Happy2Play 9444 Posted July 6, 2021 Posted July 6, 2021 (edited) 6 minutes ago, Alexwerilles said: How to remove "Emby Web" from the settings page? I mean the settings page and not the drawer. this code does not remove Emby Web from the settings page I don't follow as that is the setting page code. That code as no effect on navdrawer only settings page. Edited July 6, 2021 by Happy2Play
Alexwerilles 3 Posted July 6, 2021 Author Posted July 6, 2021 (edited) 27 minutes ago, Happy2Play said: I don't follow as that is the setting page code. That code as no effect on navdrawer only settings page. Resolved after I cleared Cloudflare's cache. Thanks! How can I remove the "Display" and "Home Screen" options? the following code no longer works either: a[title="Display"], a[title="Home Screen"] {display: none !important;} Edited July 6, 2021 by Alexwerilles
Happy2Play 9444 Posted July 6, 2021 Posted July 6, 2021 13 minutes ago, Alexwerilles said: Resolved after I cleared Cloudflare's cache. Thanks! How can I remove the "Display" and "Home Screen" options? the following code no longer works either: Here you go body div.mainAnimatedPages div div div div div:nth-child(2) button.navMenuOption:nth-child(-n+2) {display: none !important;}
Alexwerilles 3 Posted July 6, 2021 Author Posted July 6, 2021 3 minutes ago, Happy2Play said: Here you go body div.mainAnimatedPages div div div div div:nth-child(2) button.navMenuOption:nth-child(-n+2) {display: none !important;} thanks
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