Jellyfin Forum
A preview of the media content from screenshots - 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: A preview of the media content from screenshots (/t-a-preview-of-the-media-content-from-screenshots)

Pages: 1 2


RE: A preview of the media content from screenshots - luckey - 2025-02-10

(2025-01-30, 07:50 PM)M0RPH3US Wrote:
(2025-01-30, 06:20 PM)TheDreadPirate Wrote: I know you can change the appearance of each <div> block (actors, more episodes, chapter scenes) but I'm not sure you can re-order them.

@Ted Hinklater - is reordering UI elements possible?

Code:
#castCollapsible {
    order: 2;
}
#scenesCollapsible {
    order: 1;
}

should work.

Also to remove the text

Code:
.innerCardFooter>.cardText {
    display: none;
}

Thank you so much for this! I was looking for some way to put the chapters above the cast! In my case, I used this way:
Code:
#scenesCollapsible {
    order: 1;
}
#castCollapsible {
    order: 2;
}
#similarCollapsible {
order: 3;
}

This makes the chapters appear in 1, then the cast, then the 'More like this' section.