You need to edit a php file.
Find: includes/modules/YOURTEMPLATE/specials_index.php
If this file does not exist you need to create it as an override. In includes/modules/ create a new folder with the name of your template. So, now you have includes/modules/YOURTEMPLATE/
Now find the file includes/modules/specials_index.php and copy it into /includes/modules/YOURTEMPLATE/
So, now you do have:
includes/modules/YOURTEMPLATE/specials_index.php
Now edit it as follows. Find the line:
Code:
if ($specials_index->RecordCount() > 0) {
$title = '<h2 class="centerBoxHeading">' . sprintf(TABLE_HEADING_SPECIALS_INDEX, strftime('%B')) . '</h2>';
$zc_show_specials = true;
You need to put the html for your images in the following places:
Code:
if ($specials_index->RecordCount() > 0) {
$title = '<h2 class="centerBoxHeading">ImageHere' . sprintf(TABLE_HEADING_SPECIALS_INDEX, strftime('%B')) . 'ImageHere</h2>';
$zc_show_specials = true;
The html code for the image will look something like:
<img src="../images/pixel_trans.gif" width="1" height="1" align="left" border="0">
but evidently different!
Bookmarks