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;
}
}


RE: How do I change the order of My Media - onemorejeff - 2025-02-06

Hey thanks for a great simple answer.


RE: How do I change the order of My Media - Efficient_Good_5784 - 2025-02-06

(2025-02-06, 09:28 PM)onemorejeff Wrote: Hey thanks for a great simple answer. But I would like to know where to place the code snippet above please
Dashboard > General > "Custom CSS code"


RE: How do I change the order of My Media - PPRJack - 2025-02-12

(2024-06-07, 03:39 PM)west Wrote: 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;
  }
}

OMG! Thank You! 
I have been searching for a way to do this (eliminate the horizontal scrolling layout) Forever! 
This works on my Jellyfin Server Web View, Why is this NOT the Default behavior?! 
How can we make this information more visible / make the feature more readily available to more users?
Now, if only we can get the SAME thing on the Android TV Jellyfin Client Home Screen?


RE: How do I change the order of My Media - somechap - 2025-04-17

OMG this is brilliant thank you! If only it were a front-end feature / option (or even the default layout!).


RE: How do I change the order of My Media - vcdwelt - 2025-05-03

Live Saver Smiling-face Searched for this a long time!


RE: How do I change the order of My Media - WoodyBABL - 2025-05-31

Is there anyway to change the order in the Android TV app?


RE: How do I change the order of My Media - mbernold - 2025-06-02

This doesn't seem to be fully functional on the new Roku app. in the new app, clicking on the user icon in the upper right and then going to Settings/User Interface/General the last option is "Use Web Client's Home Screen Arrangement", which I have enabled. However, when I change the display order on the web client using the above method, it works fine with the web browser, but my Roku app will not change the order. I've tried everything up to and including uninstalling the app and restarting the Roku device, but still nothing. Any suggestions?

EDIT: I was making the changes using localhost on the server. I just tried again using a network port, and that seems to have worked. Not sure why, but it is now updated properly on Roku also.