![]() |
How to change font style to a .ttf file on jellyfin tv (specifically jellyfin-tizen) - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: How to change font style to a .ttf file on jellyfin tv (specifically jellyfin-tizen) (/t-how-to-change-font-style-to-a-ttf-file-on-jellyfin-tv-specifically-jellyfin-tizen) |
How to change font style to a .ttf file on jellyfin tv (specifically jellyfin-tizen) - Onfued - 2025-02-28 Hey everyone, I'm using Jellyfin on a Tizen-based TV (Jellyfin-Tizen) and I want to change the font style to a custom .ttf file. Does anyone know how to do this? I've checked the subtitle and UI settings but didn’t find an option to manually upload a font. Is there a way to replace the default font with a custom one? I've tried uploading the .ttf file to a github repo and apply it using custom CSS, but it doesn’t work. Maybe the CSS line was wrong. Has anyone successfully done this before? Any help would be appreciated! Thanks. RE: How to change font style to a .ttf file on jellyfin tv (specifically jellyfin-tizen) - TheDreadPirate - 2025-02-28 You can look at some of the work done in the Themes sub-forum to try to mimic what they've done. https://forum.jellyfin.org/t-finimalism-theme-offline The CSS for that theme. https://raw.githubusercontent.com/tedhinklater/finimalism/main/finimalism7.css Importing the font. In this case from a URL, but can also be a local file. Code: @import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap'); Using the imported font. Code: body { RE: How to change font style to a .ttf file on jellyfin tv (specifically jellyfin-tizen) - Onfued - 2025-05-05 (2025-02-28, 02:39 PM)TheDreadPirate Wrote: You can look at some of the work done in the Themes sub-forum to try to mimic what they've done. Sorry, i meant to change the subtitle font. That method only change UI font |