Jump to content

Reorder Actor Detail Screen


PenkethBoy

Recommended Posts

PenkethBoy

When viewing an Actor detail screen - items the actor is associated with always appear in the order

 

Programs

Movies

Series

Episodes

etc

 

Is it possible to re order these sections with css?

 

Not a huge problem but.... :)

Link to comment
Share on other sites

Happy2Play

Google pointed me in the direction of something like this.   Set your own order sequence 0-5, set each type as every person will have difference sections available depending on your library.

/*Change People vertical section order*/
#childrenCollapsible #childrenContent  {
    display: flex;
    flex-direction: column;
}
#childrenContent [data-type="Program"]{ order: 3; }
#childrenContent [data-type="Movie"]{ order: 2; }
#childrenContent [data-type="Series"]{ order: 1; }
#childrenContent [data-type="Episode"]{ order: 4; }
#childrenContent [data-type="Trailer"]{ order: 0; }
#childrenContent [data-type="Video"]{ order: 5; }
Link to comment
Share on other sites

PenkethBoy

Thanks Happy that works great for people detail page

 

- just finished reordering the search page which i will post about later

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...