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; }