2025-11-19, 03:00 PM
(This post was last modified: 2025-11-19, 03:26 PM by Ted Hinklater. Edited 2 times in total.)
(2025-11-19, 08:18 AM)XoXoXoXo Wrote: How do I get the Home page in Jellyfin to display the page with no horizontal scroll, just scrolling down?
I think the option is within css code, if I am correct about this.
Thank you
There are a few ways but I think a 7 x grid is cleanest.
First row sets the card sizes,
2nd row sets the containers as a grid (only on the index/homepage)
3rd row limits the items to 14, it looks cleaner but feel free to remove that if you don't want it
Code:
.layout-desktop #indexPage .overflowBackdropCard, .overflowPortraitCard, .overflowSquareCard { width: 12.5vw; }
.layout-desktop #indexPage .itemsContainer { display: grid; grid-template-columns: repeat(7, 1fr); grid-gap: 1em; }
.layout-desktop #indexPage .itemsContainer.scrollSlider.focuscontainer-x.animatedScrollX .card:nth-child(n+15) { display: none !important; }The CSS box you highlighted in your 2nd image - That box only applies to that user on that client.
If you want it to apply to every user on every client, paste the code into the CSS box in your Dashboard, under "Branding"

