Jellyfin Forum
Most simple way to replace the standard font? - 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: Most simple way to replace the standard font? (/t-most-simple-way-to-replace-the-standard-font)



Most simple way to replace the standard font? - jennystreaming - 2024-08-20

I've been trying to replace the current font on my project with something similar to the Netflix font using CSS, but I can't seem to get it to work. Ultimately, I'm looking for a simple CSS snippet that I can just copy and paste. Any help would be greatly appreciated!


RE: Most simple way to replace the standard font? - Ted Hinklater - 2024-08-20

(2024-08-20, 07:05 PM)jennystreaming Wrote: I've been trying to replace the current font on my project with something similar to the Netflix font using CSS, but I can't seem to get it to work. Ultimately, I'm looking for a simple CSS snippet that I can just copy and paste. Any help would be greatly appreciated!

the CSS:

Code:
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');

body {
  font-family: "Martel Sans", sans-serif;
  font-weight: 600;
}