Jellyfin Forum
Wrap Search Results - 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: Wrap Search Results (/t-wrap-search-results)



Wrap Search Results - GayMan420 - 2025-08-28

Is it possible to wrap search results?
   
I understand this space will be used if other data is available (as show below), but is there anyway to force the Jellyfin to wrap episodes/movies?
   


RE: Wrap Search Results - bitmap - 2025-08-30

May be possible with custom CSS, but not by enabling a setting.


RE: Wrap Search Results - SethBacon - 2025-08-30

To display all the search results wrapped on one page without having the carousels, add this to your custom CSS field:

/* --- Fully unpack the carousel search results (Movies, Shows, Episodes, People) --- */
.page.libraryPage.allLibraryPage.noSecondaryNavPage .emby-scroller {
overflow-x: visible !important;
overflow-y: visible !important;
white-space: normal !important;
}

.page.libraryPage.allLibraryPage.noSecondaryNavPage .emby-scroller .itemsContainer {
display: flex !important;
flex-wrap: wrap !important;
justify-content: flex-start !important;
align-items: flex-start !important;

white-space: normal !important;
transform: none !important;
width: 100% !important;
}

/* Normalize cards to flow cleanly in rows */
.page.libraryPage.allLibraryPage.noSecondaryNavPage .emby-scroller .itemsContainer .card {
flex: 0 0 auto !important;
margin: 0.5em !important;
}

/* --- Hide scroller chevrons in search results --- */
.page.libraryPage.allLibraryPage.noSecondaryNavPage .emby-scrollbuttons {
display: none !important;
}