Skip to main content
ExLibris
  • Subscribe by RSS
  • Ex Libris Knowledge Center

    Display order in the left menu or in the center part of the full view- using CSS code

    • Product: Primo
    • Product Version: All versions
    • Relevant for Installation Type: Multi-Tenant Direct, Dedicated-Direct, Local, TotalCare

     

    Question

    How to change the display order in the left menu of the full view or in the center part of the full view?

    Answer

    Here you can find some generic guidelines to reorder the sections in the full view (these kind of issues are out of support scope. see Primo New UI Support).

    You will need to find the aria labels in your custom css file and then put them in the order as you wish

    [aria-label="Top"] { order: 0 !important;}
    [aria-label="Send to"] { order: 1 !important;}
    [aria-label="View Online"] { order: 2 !important;}
    [aria-label="Details"] { order: 3 !important;}
    [aria-label="Links"] { order: 4 !important;}
    [aria-label="Get It"] { order: 5 !important;}
    [aria-label="Additional Services"] { order: 6 !important;}
    [aria-label="Virtual Browse"] { order: 6 !important;}
    [aria-label="Online Access"] { order: 7 !important;}
    [aria-label="In the library"] { order: 8 !important;}
    [aria-label="Locations / request item"] { order: 9 !important;}
    [aria-label="View It"] { order: 10 !important;}
    [aria-label="Citations"] { order: 11 !important;}

    ..and about ordering the center part of the full view:

    /* Moving Order of tabs in New UI */
    #details { order: 0; }
    #getit_link1_0 { order: 1; }
    #getit_link2_0 { order: 2; }
    #action_list { order: 3; } /* send to */
    #details { order: 3; }
    #links { order: 4; }
    #citations { order: 5; }
    #virtualBrowse { order: 6; }
    #tags { order: 7; }

    .syndetic-unbound-section { order: 8; }
    .full-view-inner-container {
    padding-bottom: 10em;
    display: flex;
    flex-direction: column;
    }


    • Article last edited: 04-Dec-2019