RedTyger, I'm not really sure if this was an issue or deliberate, but when activating the Sponsors under Footer & Sponsors, the collapse_tcat.gif graphic is not matching the current theme. After digging into the templates, I found that the
advertisement_sponsors template is using an absolute link to the collapse_tcat.gif file...
Code:
<img id="collapseimg_sponsors" src="images/buttons/collapse_tcat.gif" alt="" border="0" />
To get around this and to make full use of the collapse, I change the entire template to use relative links. This way, no matter what theme a user chooses, the correct collapse_tcat.gif file is chosen.
Code:
<br />
<table align="center" border="0" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" class="tborder" width="100%">
<tr>
<td class="tcat" colspan="$columns">$vbphrase[adintegrate_sponsored_links]
<a style="float:right" href="#top" onclick="return toggle_collapse('sponsors')">
<img id="collapseimg_sponsors" src="$stylevar[imgdir_button]/collapse_tcat.gif" alt="" border="0" /></a></td>
</tr>
<tr id="collapseobj_sponsors">$sponsors_adcode</tr>
</table>
<br />