danielebarchiesi@0: Copy the views-view.tpl.php from the /views/theme directory to themes/yourtheme/theme directory. Find the following code... danielebarchiesi@0: danielebarchiesi@0: danielebarchiesi@0:
danielebarchiesi@0:   <?php if ($attachment_before): ?>
danielebarchiesi@0:     <div class="attachment-before">
danielebarchiesi@0:       <?php print $attachment_before; ?>
danielebarchiesi@0:     </div>
danielebarchiesi@0:   <?php endif; ?>
danielebarchiesi@0: 
danielebarchiesi@0: danielebarchiesi@0: Insert the following code after it (this is copied directly from the same code at the bottom of the tpl): danielebarchiesi@0: danielebarchiesi@0:
danielebarchiesi@0:   <?php if ($pager): ?>
danielebarchiesi@0:     <?php print $pager; ?>
danielebarchiesi@0:   <?php endif; ?>
danielebarchiesi@0: