Today, 10:44 AM
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:
The last section just squeezes more columns into the display area, play around with the width value as you see fit.
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.