Burpee - noex
Thanks for the help .. I really appreciate it.
d3v
The code I've posted should remove the theme link tree from the bottom when I tested it.
JC
in index.template.php look for and remove:
// This part is the logo and forum name. You should be able to change this to whatever you want...
if (empty($settings['your_logo']))
{
echo '
<div style="float: right;">
<img src="', $settings['images_url'], '/smflogo.gif" width="250" alt="" />
</div>';
}
else
{
echo '
<div style="float: right;">
<img src="', $settings['your_logo'], '" style="float: right;" alt="" />
</div>';
}
azuregenesis
sorry, but there is not. I may converted to TP when it is released.
Puc conDoin
in MessageIndex.template.php look for:
<div>
<div style="overflow: auto; width: 26%; float: right;">';
if ($settings['images_url'] != $settings['theme_url'] . '/images' || file_exists($settings['theme_dir'] . '/images/icons/last_post.gif'))
echo '
<a href="', $topic['last_post']['href'], '"><img src="', $settings['images_url'], '/icons/last_post.gif" alt="', $txt[111], '" title="', $txt[111], '" border="0" style="float: left;" /></a>';
echo '
<span class="smalltext">
', $topic['last_post']['time'], '<br />
', $txt[525], ' ', $topic['last_post']['member']['link'], '
</span>
</div>
', $topic['first_post']['link'];
// Is this topic new? (assuming they are logged in!)
if ($topic['new'] && $context['user']['is_logged'])
echo '
<a href="', $scripturl, '?topic=', $topic['id'], '.from', $topic['newtime'], '#new"><img src="', $settings['images_url'], '/', $context['user']['language'], '/new.gif" alt="', $txt[302], '" border="0" /></a>';
echo '
<span class="smalltext">', $topic['pages'], '</span>
</div>
cut it and paste it just right above the <div> in the following lines:
<td class="windowbg2" valign="middle" width="100%">
<div>
<div style="float: right;">';
// Show the quick moderation options?