make a copy of tpl_contact_us_default.php
This is in templates/template_default/templates/tpl_contact_us_default.php
Bring it to your hard drive for editing.
Find the section:
PHP Code:
<?php
if (isset($_GET['action']) && ($_GET['action'] == 'success')) {
?>
<div class="mainContent success"><?php echo TEXT_SUCCESS; ?></div>
<div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<?php
} else {
?>
You will need to add in a <div> just above the <div class="mainContent success">
PHP Code:
<?php
if (isset($_GET['action']) && ($_GET['action'] == 'success')) {
?>
<div class="contentSuccessImage"><img src="path/to/your/image.jpg" />
<div>
<div class="mainContent success"><?php echo TEXT_SUCCESS; ?></div>
<div class="buttonRow"><?php echo zen_back_link() . zen_image_button(BUTTON_IMAGE_BACK, BUTTON_BACK_ALT) . '</a>'; ?></div>
<?php
} else {
?>
SAVE the file and send it to /templates/YOUR_TEMPLATE/
As the DIV has a class, you can style it. Add style declarations to your stylesheet, with:-
.contentSuccessImage {
xxx xxx
xxx xxx
}