• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support General Questions How to remove "Recently added in" Text in Library Category only

    Pages (2): 1 2 Next »

     
    • 0 Vote(s) - 0 Average

    How to remove "Recently added in" Text in Library Category only

    How to remove "Recently added in" Text in Library Category only want to show only Library category name
    vbxlive
    Offline

    Junior Member

    Posts: 16
    Threads: 3
    Joined: 2024 Sep
    Reputation: 0
    Country:India
    #1
    2024-09-06, 02:10 AM
    How to remove "Recently added in" Text in Library Category only want to show only Library category name,where I can edit file to remove that
       
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,173
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #2
    2024-09-06, 02:24 AM
    You can hide those sections by going to:

    Client Settings > Home

    In the home settings, look at the home sections and remove any that say "Recently Added Media".
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #3
    2024-09-06, 02:26 AM
    You can remove all recently added media. Click on your profile picture in the top right and then "Home". Home screen section 7 should be recent media. Change that to something else or nothing and it won't show up on the home screen anymore.
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    vbxlive
    Offline

    Junior Member

    Posts: 16
    Threads: 3
    Joined: 2024 Sep
    Reputation: 0
    Country:India
    #4
    2024-09-06, 04:58 AM (This post was last modified: 2024-09-06, 04:59 AM by vbxlive. Edited 1 time in total.)
    I dont want remove category just want remove recently added text only infront of library name,e.g in above image i want to keep kids movies only name not recently added text
    Thank you.

       
    Efficient_Good_5784
    Offline

    Community Moderator

    Posts: 1,173
    Threads: 3
    Joined: 2023 Jun
    Reputation: 50
    #5
    2024-09-06, 05:40 AM
    (2024-09-06, 04:58 AM)vbxlive Wrote: I dont want remove category just want remove recently added text only infront of library name,e.g in above image i want to keep kids movies only name not recently added text
    Thank you.
    What's the purpose of doing so? The library buttons on the top of the screen already have the different libraries listed by their names.

    That section is for recently added media, not for a library overview. It will disappear if nothing gets added eventually.
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 7
    #6
    2024-09-06, 01:20 PM
    (2024-09-06, 02:10 AM)vbxlive Wrote: How to remove "Recently added in" Text in Library Category only want to show only Library category name,where I can edit file to remove that

    Start by ensuring Recently Added is the Home screen section 2 in Settings > Home.

    To explain better I may have 3 categories - Hollywood, Bollywood & Cartoon.

    For Hollywood Section

    Code:
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Hollywood ›';
      font-size: 24px;
      font-weight: normal;
    }

    Similarly, For Bollywood

    Code:
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Bollywood ›';
      font-size: 24px;
      font-weight: normal;
    }

    And so on. See how I am changing the nth child for each. Play around with the font size and color
    vbxlive
    Offline

    Junior Member

    Posts: 16
    Threads: 3
    Joined: 2024 Sep
    Reputation: 0
    Country:India
    #7
    2024-09-06, 02:39 PM
    (2024-09-06, 01:20 PM)M0RPH3US Wrote:
    (2024-09-06, 02:10 AM)vbxlive Wrote: How to remove "Recently added in" Text in Library Category only want to show only Library category name,where I can edit file to remove that

    Start by ensuring Recently Added is the Home screen section 2 in Settings > Home.

    To explain better I may have 3 categories - Hollywood, Bollywood & Cartoon.

    For Hollywood Section

    Code:
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Hollywood ›';
      font-size: 24px;
      font-weight: normal;
    }

    Similarly, For Bollywood

    Code:
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Bollywood ›';
      font-size: 24px;
      font-weight: normal;
    }

    And so on. See how I am changing the nth child for each. Play around with the font size and color
      I tried this everything showing blank now, none of device shows webpage , completely blank,how to undo or delete code
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 7
    #8
    2024-09-06, 03:02 PM
    (2024-09-06, 02:39 PM)vbxlive Wrote:
    (2024-09-06, 01:20 PM)M0RPH3US Wrote:
    (2024-09-06, 02:10 AM)vbxlive Wrote: How to remove "Recently added in" Text in Library Category only want to show only Library category name,where I can edit file to remove that

    Start by ensuring Recently Added is the Home screen section 2 in Settings > Home.

    To explain better I may have 3 categories - Hollywood, Bollywood & Cartoon.

    For Hollywood Section

    Code:
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Hollywood ›';
      font-size: 24px;
      font-weight: normal;
    }

    Similarly, For Bollywood

    Code:
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section1
      > div:nth-child(2)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Bollywood ›';
      font-size: 24px;
      font-weight: normal;
    }

    And so on. See how I am changing the nth child for each. Play around with the font size and color
      I tried this everything showing blank now, none of device shows webpage , completely blank,how to undo or delete code

    You added this in the custom css right.??
    TheDreadPirate
    Offline

    Community Moderator

    Posts: 15,374
    Threads: 10
    Joined: 2023 Jun
    Reputation: 460
    Country:United States
    #9
    2024-09-06, 03:03 PM
    If the server is Linux, go to /etc/jellyfin/branding.xml. If the server is Windows, go to C:\ProgramData\Jellyfin\Server\config\branding.xml.

    In that file will be a CustomCss field. Change it from

    Code:
    <CustomCss>
        {insert a bunch of CSS here}
        {insert a bunch of CSS here}
        {insert a bunch of CSS here}
        {insert a bunch of CSS here}
    </CustomCss>

    to this

    Code:
    <CustomCss />
    Jellyfin 10.10.7 (Docker)
    Ubuntu 24.04.2 LTS w/HWE
    Intel i3 12100
    Intel Arc A380
    OS drive - SK Hynix P41 1TB
    Storage
        4x WD Red Pro 6TB CMR in RAIDZ1
    [Image: GitHub%20Sponsors-grey?logo=github]
    M0RPH3US
    Offline

    Member

    Posts: 89
    Threads: 5
    Joined: 2023 Jun
    Reputation: 7
    #10
    2024-09-06, 03:05 PM (This post was last modified: 2024-09-06, 03:40 PM by M0RPH3US. Edited 3 times in total.)
    (2024-09-06, 03:03 PM)TheDreadPirate Wrote: If the server is Linux, go to /etc/jellyfin/branding.xml.  If the server is Windows, go to C:\ProgramData\Jellyfin\Server\config\branding.xml.

    In that file will be a CustomCss field.  Change it from

    Code:
    <CustomCss>
        {insert a bunch of CSS here}
        {insert a bunch of CSS here}
        {insert a bunch of CSS here}
        {insert a bunch of CSS here}
    </CustomCss>

    to this

    Code:
    <CustomCss />

    @TheDreadPirate

    It's strange that this didn't work because I tested this and gave this css code. It's working for me. I won't give any untested code. 😞  How come this borks up the entire page??

    [Image: mituldA.png]
    Pages (2): 1 2 Next »

    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode