![]() |
|
Finimalism [Updated for 10.11.X] - 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: Finimalism [Updated for 10.11.X] (/t-finimalism-updated-for-10-11-x) |
RE: Finimalism [Updated for 10.11.X] - Ted Hinklater - 2025-11-27 I mentioned I have tried to reproduce your problem but I can't, I thought it was the grids so they're gone but your problem remains, so it's something else If you want to be a big help for this: press F12 in the browser to open dev tools open the Elements (Chrome) / Inspector (Firefox) tab look for finimalism10.11.css:2875 (or similar) and click it start at the bottom and delete chunks until your homepage looks right, and tell me which lines are causing trouble If we know what code is breaking it for you, I can change it RE: Finimalism [Updated for 10.11.X] - 2020 - 2025-11-27 (2025-11-27, 10:53 AM)Ted Hinklater Wrote: Hi mate youre using very old versions of finimalism and the featured content bar, make sure you update your css import and copy the latest home-html snippet and download the latest spotlight.htmlHi Mate how are you, I'm using the latest 11, the image attaged is a example, I just want it to look more like finimalism7. I also want to increase the size of the categories, they look too small, they are same size as the width of the posters, I want them the same size as default ones. finimalism 11 by default leaves one row empty, as you can see from the image, but the code you provided above fixes this. 2. is it possible to increase the size of the my media section, they look tiny and unbalanced compared to the rest. 3. is it possible to make the design slightly more like finimalism7 with banner above, logo in the middle and poster on the side. RE: Finimalism [Updated for 10.11.X] - 2020 - 2025-11-27 I was having some issues adding the images, but I have re attached them. Forgot to ask if it possible to custom the buttons at the top a little, and adding a bitt of space like the image attached. also I have just updated to the latest spotlight.html, home-html.chunk.js - after noticing you have updated it. RE: Finimalism [Updated for 10.11.X] - 2020 - 2025-11-27 1. I was thinking with @import url("https://cdn.jsdelivr.net/gh/tedhinklater/finimalism@main/no-animation.css"); you can scroll up and down could we not have it start at half way on the poster ? like the image I have attached. 2. A way to move the logo into the middle with a bigger size, assuming this will be CSS, like the image 3. the updated spotlight.html, home-html.chunk.js has changed the way Jellyfin Featured Content Bar works, now its nolonger showing the trailer. RE: Finimalism [Updated for 10.11.X] - Ted Hinklater - 2025-11-27 Have you emptied your browser cache? Your bar should look like this with a trailer button ![]() Your movie page should look like this
RE: Finimalism [Updated for 10.11.X] - 2020 - 2025-11-27 Yes, that's what the bar looks like the page is a little different image attached. Also I cant see the video, audio and subtitles part. and like this when only using @import url("https://cdn.jsdelivr.net/gh/tedhinklater/finimalism@main/finimalism10.11.css"); will this code word to increase the size of the my media cards, /* 1. CARD SIZE: Targets the cards (using a slightly shorter version of your class) and uses absolute pixels for size. */ .layout-desktop #indexPage .itemsContainer .card.overflowBackdropCard { width: 300px !important; /* Your desired width */ height: 180px !important; /* Your desired height */ } /* 2. CARD IMAGE: Ensures the image fills the new card size */ .layout-desktop #indexPage .itemsContainer .card.overflowBackdropCard .cardImageContainer { width: 100% !important; height: 100% !important; } RE: Finimalism [Updated for 10.11.X] - Ted Hinklater - 2025-11-27 If you're on 720p you can use this Code: /* 720p resolution */I've added that to the theme it should apply automatically soon I've redesigned the header tabs (Home / Favourites) to use a bit more space and match the theme If you just want to change the size of the My Media cards (first row on the homepage) use this Code: .layout-desktop .verticalSection.MyMedia.section0 .card.overflowBackdropCard.card-hoverable.card-withuserdata {width: 18em !important;}change "18" to the size you want RE: Finimalism [Updated for 10.11.X] - 2020 - 2025-11-28 !. The resolution is 1920 x 1080 but scaled to 125% due to vision, anyway around this ? 2. I it possible to move logo to middle like the bar ? 3. The code does not seam to do anything ( .layout-desktop .verticalSection.MyMedia.section0 .card.overflowBackdropCard.card-hoverable.card-withuserdata {width: 18em !important;} ) RE: Finimalism [Updated for 10.11.X] - Ted Hinklater - 2025-11-28 Use this to change the font size to fit your screen Code: @media (max-height: 1000px) {.layout-desktop body {font-size: 84% !important;}}for the logo where you want it Code: @media (orientation: landscape) {.layout-desktop #itemDetailPage:has(.portraitCard) .detailLogo, .layout-tv #itemDetailPage:has(.portraitCard) .detailLogo, .layout-desktop .itemDetailPage:has(.button-link.itemAction.emby-button[data-type="Season"]) .detailLogo, .layout-tv .itemDetailPage:has(.button-link.itemAction.emby-button.show-focus[data-type="Season"]) .detailLogo, .layout-desktop .detailLogo, .layout-tv .detailLogo {left: 50vw;top: 43vh;transform: translateX(-50%) translateY(-50%);max-height: 30em;max-width: 52em;width: 100%;height: 100%;right: unset;z-index: 1;}}for the my media cards try this, it's a little less specific Code: .layout-desktop .MyMedia .card.overflowBackdropCard.card-hoverable.card-withuserdata {width: 18em !important;}RE: Finimalism [Updated for 10.11.X] - 2020 - 2025-11-28 The code worked mostly worked as I wanted. The only code I'm having issues with is Code: .layout-desktop .MyMedia .card.overflowBackdropCard.card-hoverable.card-withuserdata {width: 18em !important;}This one works fine. Code: .layout-desktop #indexPage .itemsContainer .card.overflowBackdropCard {Also the text has shrunk, I don't know if that is the default size. Do you by chance have a code that will allow me to increase the size of the fonts and header, instead of finding them one by one ? .mainDrawer .skinHeader |