首先声明~这个是转载topbad大哥的!向topbad大哥致敬!:)
本人不是作者!只是有好东西想让大家分享下!如触犯了版权等问题!望管理员指出!也可以直接删除了!:)
修改 ./templates/default/viewthread.htm
查找:替换为:- <!--{if $post['groupid'] == 1}-->
- <span class="bold"><font style="filter: glow(color=blue,strength=3); height:10px; color:white; padding:1px">$post[author]</font></span>
- <!--{elseif $post['groupid'] == 2}-->
- <span class="bold"><font style="filter: glow(color=blue,strength=3); height:10px; color:white; padding:1px">$post[author]</font></span>
- <!--{elseif $post['groupid'] == 3}-->
- <span class="bold"><font style="filter: glow(color=blue,strength=3); height:10px; color:white; padding:1px">$post[author]</font></span>
- <!--{else}-->
- <span class="bold"><font style="filter: glow(color=blue,strength=3); height:10px; color:white; padding:1px">$post[author]</font></span>
- <!--{/if}-->
复制代码
补充下glow(color=blue,strength=3); height:10px; color:white; padding:1px这里的可以改你喜欢的颜色和样式!以上代码显示蓝圈白字!
注意替换<a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold">这句话后面的$post[author]
演示点击
以下是我自己改的
《按照性别给会员呢称加上光晕》
以下是男性为蓝圈白字,女性为红圈白字,保密是绿圈白字!颜色可以照你喜欢修改!
修改 ./templates/default/viewthread.htm(注意:以下修改是没有做过上面那个不区分性别加光晕的修改)
查找:
- <a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold">$post[author]</a>
复制代码
替换为:
- <a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold">
- <!--{if $post['gender'] == 1}--><font style="filter: glow(color=blue,strength=3); height:10px; color:white; padding:1px">$post[author]</font>
- <!--{elseif $post['gender'] == 2}--><font style="filter: glow(color=red,strength=3); height:10px; color:white; padding:1px">$post[author]</font>
- <!--{else}--><span class="bold"><font style="filter: glow(color=green,strength=3); height:10px; color:white; padding:1px">$post[author]</font></span><!--{/if}-->
- </a>
复制代码
[ 本帖最后由 kassyhan 于 2006-9-14 16:24 编辑 ] |