Support Forums

Full Version: icon help ???
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i ve managed to scre* up index default forum icons,now its all blank (tryed to install few forum icon plugins,that probably messed it all)

I ve even deleted from myphpadmin mybb_forums<icon field ,because i ve readed somewhere on digital point i think that it could help installing forum icon plugin...Now its all a big mess...Any ideas how to fix it would be most appreaciated,regards Blackhat
Whats your domain?
Your icons are pointing to a location which doesn't exist.

For example, you New Posts icon is pointing at:
http://team-forums.co.cc/images/[K]Underground/forumicons/on

When it needs to point at:
http://team-forums.co.cc/images/[K]Underground/on.gif
(02-23-2011, 01:51 PM)Fragma Wrote: [ -> ]Your icons are pointing to a location which doesn't exist.

For example, you New Posts icon is pointing at:
http://team-forums.co.cc/images/[K]Underground/forumicons/on

When it needs to point at:
http://team-forums.co.cc/images/[K]Underground/on.gif

How could i fix that? you sure that i havent messed up something by deleting icon in phpmyadmin?
theme/index template

Code:
<html>
<head>
<title>{$mybb->settings['bbname']}</title>
<script type="text/javascript">
<!--
    lang.no_new_posts = "{$lang->no_new_posts}";
    lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
</head>
<body>
{$header}
{$rduyuru}
{$welcomeguest}
{$forums}
{$boardstats}

<table cellpadding="0" cellspacing="2" border="0" width="100%">
<tr valign="bottom">
    <td>
        <table cellpadding="2" align="center" cellspacing="0" border="0">
        <tr>
            <td align="center"><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></td>
            <td align="center" class="smallfont">{$lang->new_posts}&nbsp;</td>

            <td align="center"><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></td>
            <td align="center" class="smallfont">{$lang->no_new_posts}&nbsp;</td>

            <td align="center"><img src="{$theme['imgdir']}/offlock.gif" alt="{$lang->forum_locked}" title="{$lang->forum_locked}" style="vertical-align: middle;" /></td>
            <td  align="center"class="smallfont">{$lang->forum_locked}&nbsp;</td>

        </tr>
        </table>
    </td>
</tr>
</table>
<br style="clear: both" />
{$footer}
</body>
</html>

There is gif extension in theme used by default,but when i open source of website i see its redirected to on and off without extensions,can anyone tell me how to fix it? Regards
Im 100% sure there is some code screwed in forumbit_depth1_cat
my code is

Code:
<div class="tcat_hp">
<div class="tcat_right">
            <div class="expcolimage"><img src="{$theme['imgdir']}/{$expcolimage}" id="cat_{$forum['fid']}_img" class="expander" alt="{$expaltext}" title="{$expaltext}" /></div>
            
  <div class="tcat_left">
            <a href="{$forum_url}">{$forum['name']}</a>
             - {$forum['description']}
            
  </div>

</div>
</div>
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center">
<tbody id="cat_{$forum['fid']}_e" style="{$expdisplay}">
<tr align="center">
      <td class="thead" width="6%">&nbsp;</td>
      <td class="thead" width="58%" align="left">{$lang->forumbit_forum}</td>
      <td class="thead" width="20%">{$lang->forumbit_lastpost}</td>
      <td class="thead" width="8%">{$lang->forumbit_threads}</td>
      <td class="thead" width="8%">{$lang->forumbit_posts}</td>
</tr>
{$sub_forums}
</tbody>
</table>
<div class="tfborder">&nbsp;</div>
<br />

Anyone know how to fix this to show icons like in legend on team-forums.co.cc ?