Jump to content

Search Subtitles


Alexwerilles
Go to solution Solved by Happy2Play,

Recommended Posts

Alexwerilles

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;}

Link to comment
Share on other sites

Happy2Play
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;}

 

Link to comment
Share on other sites

Alexwerilles
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

Link to comment
Share on other sites

Happy2Play
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.

setting.thumb.jpg.1bfeb7c2965560c5cc6732808a8de0b6.jpg

Edited by Happy2Play
Link to comment
Share on other sites

Alexwerilles
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.

setting.thumb.jpg.1bfeb7c2965560c5cc6732808a8de0b6.jpg

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 by Alexwerilles
Link to comment
Share on other sites

Happy2Play
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;}

 

Link to comment
Share on other sites

Alexwerilles
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

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...