Jellyfin Forum
How to remove "Recently added in" Text in Library Category only - 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 "Recently added in" Text in Library Category only (/t-how-to-remove-recently-added-in-text-in-library-category-only)

Pages: 1 2


How to remove "Recently added in" Text in Library Category only - vbxlive - 2024-09-06

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
   


RE: How to remove "Recently added in" Text in Library Category only - Efficient_Good_5784 - 2024-09-06

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


RE: How to remove "Recently added in" Text in Library Category only - TheDreadPirate - 2024-09-06

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.


RE: How to remove "Recently added in" Text in Library Category only - vbxlive - 2024-09-06

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.

   


RE: How to remove "Recently added in" Text in Library Category only - Efficient_Good_5784 - 2024-09-06

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


RE: How to remove "Recently added in" Text in Library Category only - M0RPH3US - 2024-09-06

(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


RE: How to remove "Recently added in" Text in Library Category only - vbxlive - 2024-09-06

(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


RE: How to remove "Recently added in" Text in Library Category only - M0RPH3US - 2024-09-06

(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.??


RE: How to remove "Recently added in" Text in Library Category only - TheDreadPirate - 2024-09-06

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 />



RE: How to remove "Recently added in" Text in Library Category only - M0RPH3US - 2024-09-06

(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]