2024-10-15, 09:42 PM
(This post was last modified: 2024-10-15, 09:42 PM by TheDreadPirate.)
You can try this CSS we have in our documentation.
https://jellyfin.org/docs/general/client...-libraries
I tried this on my test instance and it appears to work the way you described you wanted.
Dashboard > General > Custom CSS code.
https://jellyfin.org/docs/general/client...-libraries
Code:
@media all and (min-width: 50em) {
.homePage .emby-scroller {
margin-right: 0;
}
.homePage .emby-scrollbuttons {
display: none;
}
.homePage .itemsContainer {
flex-wrap: wrap;
}
}
I tried this on my test instance and it appears to work the way you described you wanted.
Dashboard > General > Custom CSS code.