Jellyfin Forum
Home screen My media or Continue Watching - 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: Home screen My media or Continue Watching (/t-home-screen-my-media-or-continue-watching)



Home screen My media or Continue Watching - CoolJavelin - 2025-05-11

Hello Jellyfin forum:

When on the home screen, In My media, there is a single line of folders. (In my case, I have "Movies Animation" Movies Classics" "Movies Harry Potter" etc... lots more.)

Is there any way to change this to many lines more like a grid?

Thanks, Mark.


RE: Home screen My media or Continue Watching - theguymadmax - 2025-05-12

Apply this CSS style:

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