![]() |
Change The Label 'Studio' To A Different Word On Main Movie Page - 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: Change The Label 'Studio' To A Different Word On Main Movie Page (/t-change-the-label-studio-to-a-different-word-on-main-movie-page) |
Change The Label 'Studio' To A Different Word On Main Movie Page - ElusoryApricity - 2025-05-30 Just looking for some css help - I'd like to change the word 'studio' in this heading to a different word, and it's important that Jellyfin still automatically adds an 's' to make it plural if there are multiple things in the studio category (which is the current default behavior, so I'm hoping it's a simple matter of changing the root word). Thanks! RE: Change The Label 'Studio' To A Different Word On Main Movie Page - ElusoryApricity - 2025-05-30 And as usual, asking for help made the thing I'd been trying work for seemingly no reason ![]() Although this won't keep the automatic plurals (I realised I won't ever actually need the singular case, so I can just replace the entire label with a plural word) If anyone else wants to do this or something similar, here's what worked for me: .studiosLabel { display: none; } .studiosLabel { visibility:hidden; width: 55px; } .studiosLabel:after { visibility: visible; content:"CUSTOM LABEL"; position: relative; left: -53px; width: 55px; } You might need to tweak the bolded numbers to get things to align correctly, I think it will depend on what word you replace the word 'Studio' with. I'm also not 100% sure if the 'display: none' and 'visibility: hidden' or the two instances of 'width: 55px' are redundant or not, but I don't want to risk breaking something that's working to check so if you're curious you can test that yourself ![]() |