Metadata display order

It is possible to change the order in which the Dublin Core elements display in Item view.

However, I can't figure out how to display the Files at the top, before the Dublic Core elements.

Is it possible to do this?

in the items/show.php file in your theme folder, move the block of code that looks something like:


<h3><?php echo __('Files'); ?></h3>
<div id="item-images">
     <?php echo files_for_item(); ?>
</div>

to be above the block of code for item metadata:


<div id="item-metadata">
     <?php echo all_element_texts('item'); ?>
</div>

Thanks, Sheepeeh. Was hoping this could be done without any code changes.

Some themes, like Seasons, will display files at the top of the page, or have an option to do so.