discuz 修改网站图标
默认模板的logo在static/image/common/logopng,使用ftp替换成自己的即可。如果使用的不是模板,可以右键查看属性,就能查看到logo的地址,用ftp替换即可。
希望DZ动力能够帮到您。
咳咳,我有点好奇你的问题,首先你问题的标题我没怎么理解明白,这是你现在论坛的样式还是希望你把论坛的图标改成这样?
<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版本号?
想修改一下默认的等级图标,先把你的等级在论坛用附件的形式发表在帖子中,然后按右键查看属性,这就是要替换的地址,具体的修改方法如下,有需要的朋友可以参考下,希望对大家有所帮助
想必大家都想修改一下默认的等级图标吧,刚才在论坛上看见很多大神的方法都是要修改文件的,不过为了安全起见需要事先备份好才改,这种方法是可行的,但可能有些新手站长不会修改,又或者改错了恢复不来,现在我教大家一个用代码就可以修改的方法:
先把你的等级在论坛用附件的形式发表在帖子中,然后按右键查看属性,这就是要替换的地址,然后在任意帖子中按右键查看你论坛的等级地址,这就是你论坛的等级地址,最后按照代码来替换就行了。
代码里一共三段代码,每一段都有2个链接地址。
要换的就是每一段中的两个影像连结地址。
别忘了第1个地址请一定要填写哦~
这样才能准确的替换!!依次顺序为星星/月亮/太阳。
设置代码位置:全局-----站点信息------网站第三方统计代码。
代码是:
复制代码
代码如下:
<script>var
yPic=documentgetElementsByTagName("img");for(sp=0;sp<yPiclength;
sp++){if(yPic[sp]src=="你论坛的星星等级地址"){yPic[sp]src="要替换星星的地址"}};<
/script><script>var
yPic=documentgetElementsByTagName("img");for(sp=0;sp<yPiclength;
sp++){if(yPic[sp]src=="你论坛的月亮等级地址"){yPic
[sp]src="要替换月亮的地
址"}};</script>
<script>var
yPic=documentgetElementsByTagName("img");for(sp=0;sp<yPiclength;sp++){if
(yPic[sp]src=="你论坛的太阳等级地址"){yPic[sp]src="要替换太阳的地址"}};</script&
gt;
0条评论