![]() |
A Folder View within the movies Tab - 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: A Folder View within the movies Tab (/t-a-folder-view-within-the-movies-tab) |
A Folder View within the movies Tab - Syunic - 2025-08-10 Hello, i know you can check the box to have a directory view on the start page. ![]() ![]() Is it possible to have that folder structure as a tab on top of my movie tab? This is my movie Tab: ![]() I've installed the custom tabs plugin, as you can see above i got a Tab called "Test". I struggle to get the Folder view in there as nothing gets shown. ![]() This is the code ive pasted in, even though its just chatgpt generated so i have no clue whats going on: <style> :root { --save-gut: max(env(safe-area-inset-left), 3.3%); } @media only screen and (max-width: 990px) { .requestIframe { height: calc(100vh - 105.15px) !important; margin-top: -6.15px !important; } } .requestIframe { width: 100%; height: calc(100vh - 50.716px); position: absolute; border: 0; margin-top: -20.716px; } </style> <div class="sections"> <iframe class="requestIframe" src="http://localhost:8096/web/index.html#/list.html?parentId=11b59b91c52f93e72cf8186b4849a6fa&serverId=72eb6ede6fbf4cd9a8069c6d60ebd7ce" allowfullscreen sandbox="allow-same-origin allow-scripts allow-forms allow-popups" ></iframe> </div> |