Jellyfin Forum
Banner Logo - 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: Banner Logo (/t-banner-logo)



Banner Logo - DirecTV - 2023-09-02

Can someone post the css for a banner at the top of the home screen ? Thanks.


RE: Banner Logo - DirecTV - 2023-09-02

I figured it out.


RE: Banner Logo - DirecTV - 2023-09-04

Post this in your ccs for a banner at the top of home screen, refresh browser afterwards. The animated banner looks great in jellyfin.

.sections.homeSectionsContainer::before {
content: '';
display: block;
background-image: url(https://64.media.tumblr.com/tumblr_m492u1aCWa1ro7vuqo8_r1_1280.gif);
width: 90%;
margin: 1em auto 0 auto;
height: 16em;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}


RE: Banner Logo - DirecTV - 2023-09-04

Most people would probably like something like this in their css.


.sections.homeSectionsContainer::before {
content: '';
display: block;
background-image: url(https://cmx-assets-01.s3.us-east-2.amazonaws.com/images/films/5d094251-b9c0-4475-aeea-d08a34131fdd.jpeg);
width: 100%;
margin: 0em auto 0 auto;
height: 27em;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}