Jellyfin Forum
Remove Poster from movie Details - 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: Remove Poster from movie Details (/t-remove-poster-from-movie-details)



Remove Poster from movie Details - On3 - 2025-03-08

Hi,

just looking for a CSS to remove the Big Poster from the detailpage. If i already selected a Movie i dont need the big Poster.

See screenshot which should be go away.

Thank u 4 ur Help


RE: Remove Poster from movie Details - On3 - 2025-03-14

Realy? Noone can orr want to help?


RE: Remove Poster from movie Details - TheDreadPirate - 2025-03-14

I'll do some testing when I get home tonight. The PC I'm currently on doesn't allow me to open a dev console.

In the mean time, you can open a dev console and click on the "elements" tab. If you hover over the post it should show you the name of the element for the poster. Then do something like this for the CSS.

Code:
<insert element name for post> {
  display: none;
}

If you don't figure it out before I do, I will post later tonight.


RE: Remove Poster from movie Details - M0RPH3US - 2025-03-14

(2025-03-08, 09:15 PM)On3 Wrote: Hi,

just looking for a CSS to remove the Big Poster from the detailpage. If i already selected a Movie i dont need the big Poster.

See screenshot which should be go away.

Thank u 4 ur Help

.layout-desktop .detailImageContainer .card {
    display: none;
}


RE: Remove Poster from movie Details - On3 - 2025-03-15

(2025-03-14, 01:40 PM)TheDreadPirate Wrote: I'll do some testing when I get home tonight.  The PC I'm currently on doesn't allow me to open a dev console.

In the mean time, you can open a dev console and click on the "elements" tab.  If you hover over the post it should show you the name of the element for the poster.  Then do something like this for the CSS.

Code:
<insert element name for post> {
  display: none;
}

If you don't figure it out before I do, I will post later tonight.

Great, Thanks a lot that helped.
 is there also a way to put Details align left?

Because where the Poster was is just empty now


RE: Remove Poster from movie Details - On3 - 2025-03-18

Someone?
Please?
is there also a way to put Details align left?

Because where the Poster was is just empty now


RE: Remove Poster from movie Details - Crazzzy DucK - 2025-03-19

Code:
.layout-desktop [dir="ltr"] .detailPagePrimaryContainer, [dir="ltr"] .detailPageContent
{
padding-left: 10px;
}
.layout-desktop .detailImageContainer .card {
    display: none;
}



RE: Remove Poster from movie Details - On3 - 2025-03-21

(2025-03-19, 07:44 PM)Crazzzy DucK Wrote:
Code:
.layout-desktop [dir="ltr"] .detailPagePrimaryContainer, [dir="ltr"] .detailPageContent
{
padding-left: 10px;
}
.layout-desktop .detailImageContainer .card {
    display: none;
}

Worked 100% Perfect
Thanks a lot.