![]() |
CSS for movie library cast crew thumbs in grid view - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Themes & Styles (https://forum.jellyfin.org/f-themes-styles) +--- Thread: CSS for movie library cast crew thumbs in grid view (/t-css-for-movie-library-cast-crew-thumbs-in-grid-view) Pages:
1
2
|
CSS for movie library cast crew thumbs in grid view - zelpi - 2024-10-16 I think the thread title says it all. Can someone of the experts post a code for this? I searched desperately on the web and found to my surprise nothing. A grid imo would be much better as overview for a movie’s involved persons images than the current horizontal scroll view… RE: CSS for movie library cast crew thumbs in grid view - TheDreadPirate - 2024-10-16 Something like this? Code: #castContent .card.overflowPortraitCard { RE: CSS for movie library cast crew thumbs in grid view - zelpi - 2024-10-17 Looks good, thank you. I will test it and give feedback. Maybe a slight change: A small gap between the thumbs ? RE: CSS for movie library cast crew thumbs in grid view - zelpi - 2024-10-17 Another issue concerning cast/crew integration. Would this be the right nfo-file for writing a person into the cast of the movie profile? <?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <movie> <title> Oblivion </title> <originaltitle> Oblivion </originaltitle> <actor> <name> Tom Cruise </name> <role> Jack </role> </actor> </movie> RE: CSS for movie library cast crew thumbs in grid view - TheDreadPirate - 2024-10-17 An example from my test instance. Code: <tvshow> (2024-10-17, 07:38 AM)zelpi Wrote: Looks good, thank you. I will test it and give feedback. You'd change the two margin lines to be however many pixels of buffer you want. RE: CSS for movie library cast crew thumbs in grid view - zelpi - 2024-10-19 After inserting the css code all went as expected. Thank you very much! RE: CSS for movie library cast crew thumbs in grid view - zelpi - 2024-10-20 @TheDreadPirate - would you please post a css code for putting also the Special Features into a grid? RE: CSS for movie library cast crew thumbs in grid view - TheDreadPirate - 2024-10-20 Special features? Can you show a screenshot of what you want in a grid? RE: CSS for movie library cast crew thumbs in grid view - zelpi - 2024-10-20 When a movie has more than 4 or 5 clips as bonus material, you have to scroll horizontally. You see this for example in this video at 3:05. https://www.youtube.com/watch?v=mn18xFVXogc With a grid, that would not be necessary any more. RE: CSS for movie library cast crew thumbs in grid view - TheDreadPirate - 2024-10-20 Code: #specialsContent { |