• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Themes & Styles Help

     
    • 0 Vote(s) - 0 Average

    Help

    calle
    Offline

    Junior Member

    Posts: 1
    Threads: 1
    Joined: 2024 Jun
    Reputation: 0
    Country:Germany
    #1
    2024-06-11, 08:15 AM
    Hello
    I'm brand new to the forum and I'm just starting to get to grips with Jellyfin.
    I have seen in the forum that you can change / pimp the surface individually and I would like to learn how to do that.

    Can you briefly tell me where I have to copy what?

    Thank you
    calle
    Ted Hinklater
    Offline

    Member

    Posts: 149
    Threads: 8
    Joined: 2023 Nov
    Reputation: 22
    Country:United Kingdom
    #2
    2024-06-11, 09:33 AM (This post was last modified: 2024-06-11, 09:40 AM by Ted Hinklater. Edited 2 times in total.)
    (2024-06-11, 08:15 AM)calle Wrote: Hello
    I'm brand new to the forum and I'm just starting to get to grips with Jellyfin.
    I have seen in the forum that you can change / pimp the surface individually and I would like to learn how to do that.

    Can you briefly tell me where I have to copy what?

    Thank you
    calle

    Hello! I like to use Notepad++ to write the code, it shows you each line number which is helpful when there are hundreds of lines. I also like to use Firefox because it has the Style Editor.

    For this specific example:  If you want to capitalize and make red the titles in only the Gallery and only on desktop (not mobile or TV), press Ctrl+Shift+C in the Gallery and click on a title.

    [Image: BegEk8S.png]

    You can see the div we want is called "cardText cardTextCentered cardText-first" so we can add this to the Custom CSS box (found in Dashboard > General)

    Code:
    .cardText.cardTextCentered.cardText-first {
        text-transform: uppercase;
        color: red;
    }


    That changed all the titles to red, on every page, not just the in gallery and not just on desktop like the plan; we need to be more specific, so we add the id found here

    [Image: a4XM0yf.png]

    and specify that this should only affect Desktop users, so our code becomes...

    Code:
    .layout-desktop #moviesTab .cardText.cardTextCentered.cardText-first {
        text-transform: uppercase;
        color: red;
    }

    [Image: DKAGpBz.png]

    There is more than that but this is the very basic idea of how it works.
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode