One might try this also ...
includes/ templates/template_default/templates/ tpl_modules_specials_default.php
Place this file in your override directory and edit ...
Place your text in the red coding below ...
Code:
$zc_show_specials = false;
include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_SPECIALS_INDEX));
?>
<!-- bof: specials -->
<?php if ($zc_show_specials == true) { ?>
<div class="centerBoxWrapper" id="specialsDefault">
<?php
/**
* require the columnar_display template to show the products
*/
require($template->get_template_dir('tpl_columnar_display.php',DIR_WS_TEMPLATE, $current_page_base,'common'). '/tpl_columnar_display.php');
?><div>My unique text is here</div>
</div>
<?php } ?>
<!-- eof: specials -->