Remove/merge certain "Latest" rows - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: Remove/merge certain "Latest" rows (/t-remove-merge-certain-latest-rows) |
Remove/merge certain "Latest" rows - knoppid - 2024-01-10 Howdy, as I only use Jellyfin for movies, I am using the libraries to sort my movie collecions. But I only want to see the latest films from my main collection - it would be even better if the latest films from all or selected libraries were displayed. Does annybody know some CSS? Thanks in advance! RE: Remove certain "Latest" rows - tmsrxzar - 2024-01-10 you've added multiple library entries for movies and now you want jellyfin to merge them back together in the ui; correct? RE: Remove certain "Latest" rows - TheDreadPirate - 2024-01-10 (2024-01-10, 09:57 PM)tmsrxzar Wrote: you've added multiple library entries for movies and now you want jellyfin to merge them back together in the ui; correct? I think he wants there to be a single "latest" row instead of the current behavior where each library has its own row. RE: Remove certain "Latest" rows - knoppid - 2024-01-10 (2024-01-10, 10:00 PM)TheDreadPirate Wrote:(2024-01-10, 09:57 PM)tmsrxzar Wrote: you've added multiple library entries for movies and now you want jellyfin to merge them back together in the ui; correct? Exactly RE: Remove certain "Latest" rows - tmsrxzar - 2024-01-10 i see, well, it's kind of either or if you click the user icon in the top right -> Home -> "Automatically Group", select all that apply; this will merge everything into a single "Latest" row but also merge all movies into a single "Movies" entry instead of separate libraries i recommend looking into custom Collections then you can have different sub groups of movies i use this for Marvel Cinematic Universe and DC Universe sub groups RE: Remove certain "Latest" rows - knoppid - 2024-01-10 (2024-01-10, 10:06 PM)tmsrxzar Wrote: i see, well, it's kind of either or I have tried that before, but i really like the design with libraries: https://ibb.co/7tKbT3H As I only know how to copy+paste CSS code, I thought it would be possible to do with custom css. RE: Remove/merge certain "Latest" rows - knoppid - 2024-01-11 Can't i use sth. like that for the rows? Certainly! To remove specific rows using CSS, you typically hide them using the display: none; property. If your "Latest" rows have a common class, you can do something like:.latest-row { display: none; } but what do I have to insert for .latest-row ?? |