Today, 03:05 AM
(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.