• Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below
  • Forum
  • Website
  • GitHub
  • Status
  • Translation
  • Features
  • Team
  • Rules
  • Help
  • Feeds
User Links
  • Login
  • Register
  • Login Register
    Login
    Username/Email:
    Password:
    Or login with a social network below

    Useful Links Forum Website GitHub Status Translation Features Team Rules Help Feeds
    Jellyfin Forum Support Themes & Styles All I want is a logo on the login page

     
    • 1 Vote(s) - 3 Average

    All I want is a logo on the login page

    I'm sure there's an easy way but I don't know it
    Kevin Nord
    Offline

    Junior Member

    Posts: 27
    Threads: 7
    Joined: 2023 Jun
    Reputation: 0
    #7
    2023-07-04, 11:15 AM (This post was last modified: 2023-07-04, 11:18 AM by Kevin Nord.)
    (2023-06-27, 06:17 PM)Prayag Wrote: Try creating a psuedo elem for the login title text. For more info search for psuedo css elements

    Thanks I'll give it a crack this morning!

    (2023-06-28, 02:18 AM)DemonWarrior Wrote:
    (2023-06-28, 02:14 AM)thornbill Wrote: That doesn’t help when Jellyfin does not currently show any image there demon

    Im assuming he used the minimalistic login screen which some of that code removes the logos on the login screen. So the next step is him posting his css so we can tell him what to remove or edit to fix his issue. I did not see his current issue with no logos. But thats my best guess currently. I think he used this https://jellyfin.org/docs/general/client...login-page

    You are correct, I'll post my CSS here:

    Code:
    @import url("https://cdn.jsdelivr.net/npm/jellyskin@latest/dist/addons/compactPosters.css");

    /* Make count indicator icon dark and transparent */
    .countIndicator {background: #ff000058;}
    /* Make watched icon dark and transparent */
    .indicator { background: #ff0000 !important; }

    .skinHeader,
    .mainDrawer,
    .emby-input,
    .emby-textarea,
    .emby-select,
    .navMenuOption-selected,
    .cardBox,
    .paperList {
      background: #300000;
    }
    .backgroundContainer.withBackdrop,
    .backdropContainer,
    .backgroundContainer {
      background: #1a0000;
    }
    /* Backdrop Image */
    .backdropImage {
      display: none;
    }

    .emby-input,
    .emby-textarea,
    .emby-select {
      border-color: #ffffff;
    }

    .emby-input:focus,
    .emby-textarea:focus,
    .emby-select-withcolor {
      border-color: #cc0000 !important;
    }
    .backgroundContainer {
      background-color: rgba(0, 0, 0, 0);
      background-image: url('https://ko4bep.net/img/nordflix_bg.png');
      filter: blur(10px);
      background-size: cover;
    }
    .pageTitleWithDefaultLogo {
        background-image: url('https://ko4bep.net/img/nordflix.png');
    }
    .playedIndicator {
      background: #DB202C;
    }

    .headerSyncButton {
      display: none;
    }

    div.starRatingContainer {
      display: none;
    }

    #homeTab
      > div
      > div.section2
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > h2 {
      display: none;
    }
    #homeTab
      > div
      > div.section2
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a
      > span {
      display: none;
    }
    #homeTab
      > div
      > div.section2
      > div:nth-child(1)
      > div.sectionTitleContainer.sectionTitleContainer-cards.padded-left
      > a:after {
      content: 'Recently Added Movies ›';
      font-size: 24px;
      font-weight: normal;
    }


    #loginPage {
      background: url('https://ko4bep.net/img/nordflix_bg.png');
      background-size: cover;
    }

    /* Adjust both "size-adjust" and "size" to modify size */
    .headerTabs.sectionTabs {
      text-size-adjust: 100%;
      font-size: 100%;
    }
    .pageTitle {
      margin-top: auto;
      margin-bottom: auto;
    }
    .emby-tab-button {
      padding: 1.75em 1.7em;
    }

    /* Narrow the login form */
    #loginPage .readOnlyContent,
    #loginPage form {
      max-width: 22em;
    }

    /* Hide "please login" text, margin is to prevent login form moving too far up */
    #loginPage h1 {
      display: none;
    }
    #loginPage .padded-left.padded-right.padded-bottom-page {
      margin-top: 50px;
    }

    /* Hide "manual" and "forgot" buttons */
    #loginPage .raised.cancel.block.btnManual.emby-button {
      display: none;
    }
    #loginPage .raised.cancel.block.btnForgotPassword.emby-button {
      display: none;
    }

    /* Size episode preview images in a more compact way */
    .listItemImage.listItemImage-large.itemAction.lazy {
      height: 100px;
    }
    .listItem-content {
      height: 100px;
    }
    .secondary.listItem-overview.listItemBodyText {
      height: 61px;
      margin: 0;
    }

    Thanks for taking the time to reply!
    « Next Oldest | Next Newest »

    Users browsing this thread: 1 Guest(s)


    Messages In This Thread
    All I want is a logo on the login page - by Kevin Nord - 2023-06-24, 03:42 PM
    RE: All I want is a logo on the login page - by Prayag - 2023-06-27, 06:17 PM
    RE: All I want is a logo on the login page - by Kevin Nord - 2023-07-04, 11:15 AM
    RE: All I want is a logo on the login page - by DemonWarrior - 2023-06-28, 02:12 AM
    RE: All I want is a logo on the login page - by thornbill - 2023-06-28, 02:14 AM
    RE: All I want is a logo on the login page - by DemonWarrior - 2023-06-28, 02:18 AM
    RE: All I want is a logo on the login page - by Prayag - 2023-07-02, 05:47 PM
    RE: All I want is a logo on the login page - by AshipaEkO - 2023-08-25, 12:23 PM
    RE: All I want is a logo on the login page - by Kevin Nord - 2023-08-31, 02:47 PM
    RE: All I want is a logo on the login page - by SaschaNes - 2023-12-14, 01:36 PM
    RE: All I want is a logo on the login page - by bitmap - 2023-08-25, 04:38 PM
    RE: All I want is a logo on the login page - by jennystreaming - 2024-08-20, 07:17 PM
    RE: All I want is a logo on the login page - by 97hyc - 2024-08-21, 12:54 PM

    • View a Printable Version
    • Subscribe to this thread
    Forum Jump:

    Home · Team · Help · Contact
    © Designed by D&D - Powered by MyBB
    L


    Jellyfin

    The Free Software Media System

    Linear Mode
    Threaded Mode