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

    Moving the Thumbnails to the Right Side (Classic UI)

    This information is not applicable to Primo VE environments. For more details on Primo VE configuration, see Primo VE.
    In Primo v3, the thumbnails display on the left side instead of the right side, as previously displayed in Primo v2.
    The only way to display the thumbnails on the right side is via the following Javascript change in the footer or header of the page:
    <script type="text/javascript">
    $('.EXLResult .EXLThumbnail').each(function(){
        $(this).parents(".EXLResult").append(this);
    });
    </script>
    This jQuery example (a Javascript library already included in Primo) shows off the following results:
    thumbnailsRightSide.gif
    Thumbnails on the Right Side of Brief Results
    Note that it is also possible to display the type icon on the left side and the thumbnail on the right side if it exists, but that is beyond the scope of this document.