In Primo VE, the options for the "Record Actions" section can be configured on the Brief Record Display, but libraries are not able to arrange the order of display as far as I can tell. Is this configurable somehow?
Our libraries would like to be able to move that section around like they can the other sections on the Full Record Services page.
Ex Libris provided the following instructions to arrange the display order of sections of the Primo VE Full Record:
You can work with the CSS below, in the custom1.css file, to move the Send To actions.
.full-view-inner-container {padding-bottom: 10em;display: flex;flex-direction: column;}
/*RE-order the Center Sections */#getit_link1_0 { order: 0; }#getit_link2_0 { order: 1; }#action_list{ order: 2; }#details { order: 3; }#links { order: 4; }#virtualBrowse { order: 5; }
/*re-order the Left Navigation on the Detailed Page */[aria-label="Online Access"] { order: 0 !important; }[aria-label="In the library"] { order: 1 !important; }[aria-label="Send to"] { order: 2 !important; }[aria-label="Details"] { order: 3 !important; }[aria-label="Links"] { order: 4 !important; }[aria-label="Virtual Browse"] { order: 5 !important; }