Jellyfin Forum
Tweaking the home screen on the web app - 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: Tweaking the home screen on the web app (/t-tweaking-the-home-screen-on-the-web-app)



Tweaking the home screen on the web app - pastilhas1979 - 2025-05-31

I want to have a lot of different libraries, to better organize my collection.
I hate that on the home screen of the web app, there's only a single row with a horizontal scroller dedicated to the Libraries.

Is there a way to have a more prominent display of all the libraries, without the scroller, just a simple grid?

Thank you


RE: Tweaking the home screen on the web app - theguymadmax - 2025-05-31

Code:
@media all and (min-width: 50em) {
  .homePage .emby-scroller {
    margin-right: 0;
  }
  .homePage .emby-scrollbuttons {
    display: none;
  }
  .homePage .itemsContainer {
    flex-wrap: wrap;
  }
}


Dashboard->General-> Custom CSS code


RE: Tweaking the home screen on the web app - pastilhas1979 - 2025-06-01

Perfect! Thank you so much!