Jellyfin Forum
[Snippet]Got annoyed with the movie extras scroller - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Themes & Styles (https://forum.jellyfin.org/f-themes-styles)
+--- Thread: [Snippet]Got annoyed with the movie extras scroller (/t-snippet-got-annoyed-with-the-movie-extras-scroller)



[Snippet]Got annoyed with the movie extras scroller - Iskelderon - 2024-11-05

In case anyone else also wants to kill the scrolling of their movie scenes and specials to have everything in one spot, here's a mod of the classic snippet that stops that on the home page:
Code:
@media all and (min-width: 50em) {
  #specialsCollapsible .emby-scroller,
  #musicVideosCollapsible.emby-scroller,
  #scenesCollapsible.emby-scroller {
    margin-right: 0;
  }
  #specialsCollapsible .emby-scrollbuttons,
  #musicVideosCollapsible .emby-scrollbuttons,
  #scenesCollapsible .emby-scrollbuttons  {
    display: none;
  }

  #specialsCollapsible .itemsContainer,
  #musicVideosCollapsible .itemsContainer,
  #scenesCollapsible .itemsContainer {
    flex-wrap: wrap;
  }

  #specialsCollapsible .overflowBackdropCard,
  #musicVideosCollapsible .overflowBackdropCard,
  #scenesCollapsible .overflowBackdropCard {
    max-width: 13.4vw !important;
  }

The last section just squeezes more columns into the display area, play around with the width value as you see fit.