Jellyfin Forum
How do I change the order of My Media - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting)
+--- Thread: How do I change the order of My Media (/t-how-do-i-change-the-order-of-my-media)



How do I change the order of My Media - GavGaddis - 2024-06-07

Pretty self-explanatory. For how customizable Jellyfin is, I feel like there's GOT to be a way to re-order the initial My Media bar to not follow alphabetical order. It's not super user-friendly to have TV content off the side of the screen because I happen to also have Collections, Playlists, Music, etc. taking up space. All I can dig out of the old subreddit is someone confidently saying it's in User Profile settings but damned if I see anything.


RE: How do I change the order of My Media - west - 2024-06-07

Click on top corner user profile avatar icon.
Click "Home"
Scroll down to "Library Order"
Make changes there.

Also if you want to eliminate the horizontal scrolling layout, you can try this bit of CSS code
Copy and paste the following then restart:


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