02-06-2011, 01:43 PM
Ok, if I had in my Theme directory the following files:
On.gif
Off.gif
Lock.gif
Assuming the images actually work, I would need to have my index code as:
On.gif
Off.gif
Lock.gif
Assuming the images actually work, I would need to have my index code as:
Code:
<dl class="forum_legend smalltext">
<dt><img src="{$theme['imgdir']}/On.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->new_posts}</dd>
<dt><img src="{$theme['imgdir']}/Off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
<dd>{$lang->no_new_posts}</dd>
<dt><img src="{$theme['imgdir']}/Lock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></dt>
<dd>{$lang->forum_locked}</dd>
</dl>