go into your yourtemplate/common/tpl_header.php
take out this code
Code:
<?php
// Display all header alerts via messageStack:
if ($messageStack->size('header') > 0) {
echo $messageStack->output('header');
}
if (isset($_GET['error_message']) && zen_not_null($_GET['error_message'])) {
echo htmlspecialchars(urldecode($_GET['error_message']));
}
if (isset($_GET['info_message']) && zen_not_null($_GET['info_message'])) {
echo htmlspecialchars($_GET['info_message']);
} else {
}
?>
and put it where you want it in the yourtemplate/common/tpl_main_page.php .
make sure you back up both files before messing around
this should do the trick. good luck... nice site btw.
note you might want to steer away from all the flash stuff, takes some time to load everything . these same objectives can be done in jquery set. take a look in the zen forum for more info on using flash vs jquery. good luck to ya