Override:No Numbers in Category List
From Joomla! Documentation
You may remove the numbers in a category list.
Copy the File
Copy the default_items.php file:
/components/com_content/views/category/tmpl/default_items.php
to the the html folder of your template:
/templates/<yourTemplate>/html/com_content/category/default_items.php
Edit the Copied File
Delete or comment out line 43:
<?php echo JText::_('Num'); ?>
If you still want an empty column where the numbers were, delete or comment out line 70:
<?php echo $this->pagination->getRowOffset( $item->count ); ?>
To eliminate the entire number column, delete or comment out lines 69 through 71:
<td align="right"> <?php echo $this->pagination->getRowOffset( $item->count ); ?> </td>