this post was submitted on 09 Nov 2024
0 points (NaN% liked)
Jellyfin: The Free Software Media System
5732 readers
3 users here now
Current stable release: 10.10.0
Matrix (General Information & Help)
Matrix (Off-Topic) - Come get to know the team and blow off steam!
Matrix Space - List of all the available rooms on Matrix.
Discord - Bridged to our Matrix rooms
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
If I want to take that
theme.css
file and just save it to my server itself instead of having Jellyfin fetch it each time the CSS loads, what would I put in the@import
rule? I placed the file in my Jellyfin Docker container'sconfig
folder and used@import "/config/theme.css”;
, but that does not seem to change the CSS at all.You should put it in Jellyfin web's root folder (paths are relative to it). In the official container it's
/jellyfin/jellyfin-web
.Then you just
@import "theme.css";
.Where on my host filesystem is
/jellyfin/jellyfin-web
? I am using the official container image. Is that somewhere within/config
or something?It's a path inside the container, but not inside
/config
. You should mount the file like this:Great, that worked! Thanks.