Add extra information to the contact us page. You can view it here:

http://www.salo-fashion.nl/contact_us.php?language=en

Simple modification where you can add any info you like:

Example: Address, Phone Number, Store Hours ect..

Just add this to catalog/includes/languages/english/contact_us.php

and any language you use

before
Code:
?>
add
Code:
define('CONTACT_US_DISCLAIMER', 'ADD YOUR TEXT HERE');
Save It,

#######################################

In catalog/templates/fallback//content/contact_us.tpl.php:

find:

Code:
<td class="main"><?php echo ENTRY_NAME; ?></td>
add above this line:
Code:
<td class="main"><?php echo CONTACT_US_DISCLAIMER; ?></td>
              </tr>              <tr>
Save It.

Thats It!