![]() |
UI bug - Wierd displacement in content pagesdisplacement - 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: UI bug - Wierd displacement in content pagesdisplacement (/t-ui-bug-wierd-displacement-in-content-pagesdisplacement) |
UI bug - Wierd displacement in content pagesdisplacement - Hectik - 2024-11-22 I recently ran into a bug after jumping upgrade of jellyfin web from idk how many versions ago to 10.10.3. I'm not sure if the update is related or if I messed up somewhere in terms of customizing. I get this black box div in the middle of any content page. Images attatched. Any hints on how to fix would be appreciated. RE: UI bug - Wierd displacement in content pagesdisplacement - TheDreadPirate - 2024-11-22 Can you share your current custom CSS or theme? Many many changes in jellyfin-web probably broke most or all of it. If you got your custom CSS from someone's git, check if they've updated their git with new CSS. RE: UI bug - Wierd displacement in content pagesdisplacement - Hectik - 2024-11-22 I tried two themes, Jellytheme and Jellyflix, with Skin Manager and got the same result. I have no other CSS customization. This is in branding.xml Code: <?xml version="1.0" encoding="utf-8"?> I have a few customizations in the index.html for title and seasonal "animation". I've also replaced a few assets through volume mappings. I have tried downing, system prune -a and running the container again but I get the same results. Could something in the config folder be causing this? That is the only folder that is fully volume mapped RE: UI bug - Wierd displacement in content pagesdisplacement - TheDreadPirate - 2024-11-22 Can you clear your browser cache? I want to ensure that there isn't some sort of cache issue. @Ted Hinklater - do you have any insight? RE: UI bug - Wierd displacement in content pagesdisplacement - Hectik - 2024-11-22 I think the issue is with the actual skins/css from the plugin. I've looked at more maintained git repos with Jellyfin skins and they seem to work well. RE: UI bug - Wierd displacement in content pagesdisplacement - Ted Hinklater - 2024-11-22 Unfortunately I don't think ShiniGandhi's JellyTheme has been updated since jellyfin 10.8.x, the detailPage elements have definitely changed since then (10.9+ felt personal at times) RE: UI bug - Wierd displacement in content pagesdisplacement - Ted Hinklater - 2024-11-22 If you add this snippet to the end of your CSS, it'll fix the main stuff Code: #itemDetailPage .detailLogo {margin-top: 3vh !important;} Before ![]() After ![]() |