discuz板块图标宽度是多少呢?
宽度是不限制的。具体宽度最佳宽度还是要根据你的页面风格来定。高度合适,然后宽度的话就按照黄金比例来分配,现在流行的16:9 16:10就是黄金比例线上的,你也可以按照这个比例来分配,例如160px宽度配100px高度。
图文教?给你代码吧!先把新旧帖提示图标去掉 然后 后台添加板块图标即可(URL)
还有在template/default文件夹下的discuzhtm里查找<th width="$cat[forumcolwidth]"{$forum[folder]}>
改成<th width="$cat[forumcolwidth]">{$forum[icon]}
相应模板文件夹下的 css_commonhtm
每个模板文件夹下的“css_appendhtm”文件里的那两行代码都要注释掉或者删掉。
list thnew { background-image: url({IMGDIR}/forum_newgif); }
第309行
list th { background: url({IMGDIR}/forumgif) 5px 10px no-repeat; padding-left: 45px !important; }[hr]
咳咳,我有点好奇你的问题,首先你问题的标题我没怎么理解明白,这是你现在论坛的样式还是希望你把论坛的图标改成这样?
<td class="fl_g"{if $forumcolwidth} width="$forumcolwidth"{/if}><div class="fl_icn_g"{if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="width: {$forum[extra][iconwidth]}px;"{/if}>
<!--{if $forum[icon]}-->
$forum[icon]
<!--{else}-->
<a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}><img src="{IMGDIR}/forum{if $forum[folder]}_new{/if}gif" alt="$forum[name]" /></a>
<!--{/if}-->
</div>
<dl{if !empty($forum[extra][iconwidth]) && !empty($forum[icon])} style="margin-left: {$forum[extra][iconwidth]}px;"{/if}>
<dt><a href="$forumurl"{if $forum[redirect]} target="_blank"{/if}{if $forum[extra][namecolor]} style="color: {$forum[extra][namecolor]};"{/if}>$forum[name]</a><!--{if $forum[todayposts] && !$forum['redirect']}--><em class="xw0 forum_xi1" title="{lang forum_todayposts}">$forum[todayposts]</em><!--{/if}--></dt>
<!--{if empty($forum[redirect])}--><dd><em>{lang forum_threads}: <!--{echo dnumber($forum[threads])}--></em>, <em>{lang forum_posts}: <!--{echo dnumber($forum[posts])}--></em></dd><!--{/if}-->
<dd>
<!--{if $forum['permission'] == 1}-->
{lang private_forum}
<!--{else}-->
<!--{if $forum['redirect']}-->
<a href="$forumurl" class="xi2">{lang url_link}</a>
<!--{elseif is_array($forum['lastpost'])}-->
<!--{if $forumcolumns < 3}-->
<a href="forumphpmod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost" class="xi2"><!--{echo cutstr($forum[lastpost][subject], 30)}--></a> <cite>$forum[lastpost][dateline] <!--{if $forum['lastpost']['author']}-->$forum['lastpost']['author']<!--{else}-->$_G[setting][anonymoustext]<!--{/if}--></cite>
<!--{else}-->
<a href="forumphpmod=redirect&tid=$forum[lastpost][tid]&goto=lastpost#lastpost">{lang forum_lastpost}: $forum[lastpost][dateline]</a>
<!--{/if}-->
<!--{else}-->
{lang never}
<!--{/if}-->
<!--{/if}-->
</dd>
<!--{hook/index_favforum_extra $forum[fid]}-->
</dl>
</td>
上面这是Discuzhtm里面的代码,就是管首页版块列表的显示的,你试试找风格目录下面的这个文件,把对应的代码改成我上面给出的这些代码应该就行了。别忘了做备份。另外LZ你能否提供你的DISCUZ版本号?
0条评论