2023-11-21, 10:48 PM
(2023-10-29, 01:52 PM)SuppleJelly Wrote: Is there a way to hide certain tabs within each library? For example, under Movies, I want to hide "Suggestions", "Trailers", and "Favorites". I read you can do this with custom CSS, but beyond that, I haven't found any clear instructions.
I don't know much CSS, but found this on another site, sadly it just "removes the 3rd tab" (or button) from all sections. Thankfully removes the non-functioning, redundant, and possibly confusing to new users Trailers section, or you just change the 3 to whatever tabs you want. Just go to settings, general, add custom CSS at the end.
Code:
/*hides third button or tab, aka upcoming in tv shows and trailers in movies but sadly channels in Live TV*/
body > div.skinHeader.focuscontainer-x.skinHeader-withBackground.skinHeader-blurred > div.headerTabs.sectionTabs > div > div > button:nth-child(3) {display: none !important}