How to remove episode count from top right of show - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: How to remove episode count from top right of show (/t-how-to-remove-episode-count-from-top-right-of-show) |
How to remove episode count from top right of show - Chunky Trade - 2024-07-17 Hello For each show, it shows the number of episodes in the top right corner of the primary portrait of the show. Can we remove that? RE: How to remove episode count from top right of show - Efficient_Good_5784 - 2024-07-17 To hide the count indicators, paste the following into your server's Custom CSS: Code: .countIndicator {display: none;} If you also want to hide the "played checkmark" indicators, use this CSS: Code: .playedIndicator {display: none;} |