美化见图示
详情见本论坛演示:http://xxhome.lyzzz.net/forum/viewthread.php?tid=111348
本修改把管理员查看ip图标移动到其他位置了,比如移到评分或者楼层那里。而此位置由性别图标替换,未填性别的将不显示性别图标,性别图标可在论坛帖子页保存。
***************************************************************
12.17日23:30以前的请作如下修改
查找
- <!--{if $post['gender'] == 1}-->
- <!--{if $timestamp - $post['lastactivity'] <= 1200}-->
- <img src="{IMGDIR}/Male.gif" width="21" height="19" align=right border="0" alt="帅哥哟,在线,有人找我吗?">
- <!--{else}-->
- <img src="{IMGDIR}/ofMale.gif" width="21" height="19" align=right border="0" alt="帅哥哟,离线,有人找我吗?">
- <!--{/if}-->
- <!--{elseif $post['gender'] != 0}-->
- <!--{if $timestamp - $post['lastactivity'] <= 1200}-->
- <img src="{IMGDIR}/feMale.gif" width="21" height="19" align=right border="0" alt="美女呀,在线,快来找我吧!">
- <!--{else}-->
- <img src="{IMGDIR}/offeMale.gif" width="21" height="19" align=right border="0" alt="美女呀,离线,快来找我吧!">
- <!--{/if}-->
- <!--{/if}-->
复制代码
修改为
- <!--{if $post['gender'] == 1}-->
- <!--{if $timestamp - $post['lastactivity'] <= 10800 && !$post['invisible']}-->
- <img src="{IMGDIR}/Male.gif" width="21" height="19" align=right border="0" alt="帅哥哟,在线,有人找我吗?">
- <!--{else}-->
- <img src="{IMGDIR}/ofMale.gif" width="21" height="19" align=right border="0" alt="帅哥哟,离线,有人找我吗?">
- <!--{/if}-->
- <!--{elseif $post['gender'] != 0}-->
- <!--{if $timestamp - $post['lastactivity'] <= 10800 && !$post['invisible']}-->
- <img src="{IMGDIR}/feMale.gif" width="21" height="19" align=right border="0" alt="美女呀,在线,快来找我吧!">
- <!--{else}-->
- <img src="{IMGDIR}/offeMale.gif" width="21" height="19" align=right border="0" alt="美女呀,离线,快来找我吧!">
- <!--{/if}-->
- <!--{/if}-->
复制代码
***************************************************************
具体修改过程
打开viewthread.htm,
1.增加性别图标显示
查找
- <!--{if $forum['ismoderator']}-->
- <!--{if $allowviewip}--><a href="topicadmin.php?action=getip&fid=$fid&tid=$tid&pid=$post[pid]"><img src="{IMGDIR}/ip.gif" border="0" align="right" alt="{lang admin_getip}"></a><!--{/if}-->
- <!--{/if}-->
复制代码
后面添加
- <!--{if $post['gender'] == 1}-->
- <!--{if $timestamp - $post['lastactivity'] <= 10800 && !$post['invisible']}-->
- <img src="{IMGDIR}/Male.gif" width="21" height="19" align=right border="0" alt="帅哥哟,在线,有人找我吗?">
- <!--{else}-->
- <img src="{IMGDIR}/ofMale.gif" width="21" height="19" align=right border="0" alt="帅哥哟,离线,有人找我吗?">
- <!--{/if}-->
- <!--{elseif $post['gender'] != 0}-->
- <!--{if $timestamp - $post['lastactivity'] <= 10800 && !$post['invisible']}-->
- <img src="{IMGDIR}/feMale.gif" width="21" height="19" align=right border="0" alt="美女呀,在线,快来找我吧!">
- <!--{else}-->
- <img src="{IMGDIR}/offeMale.gif" width="21" height="19" align=right border="0" alt="美女呀,离线,快来找我吧!">
- <!--{/if}-->
- <!--{/if}-->
复制代码
2.给ID加上性别颜色
查找
- <a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold">$post[author]</a>
复制代码
替换为
- <!--{if $post['gender'] == 1}-->
- <a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold"><font style='filter: glow(color=#00B02D,strength=3); height:10px; padding:2px' color=#FFFFC8 face=Comic Sans MS><span class="bold">$post[author]</span></font></a>
- <!--{elseif $post['gender'] != 0}-->
- <a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold"><font style='filter: glow(color=deeppink,strength=3); height:10px; padding:2px' color=white face=Comic Sans MS><span class="bold">$post[author]</span></font></a>
- <!--{else}-->
- <a href="viewpro.php?uid=$post[authorid]" target="_blank" class="bold"><font style='filter: glow(color=blue,strength=3); height:10px; padding:2px' color=#FFFFC8 face=Comic Sans MS><span class="bold">$post[author]</span></font></a>
- <!--{/if}-->
复制代码
3.给头像加颜色边框
查找
- <table width="95%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed">
- <tr><td align="center">$post[avatar]</td></tr></table>
复制代码
替换为
- <table width="95%" border="0" cellspacing="0" cellpadding="0" style="table-layout: fixed">
- <tr><td align="center">
- <!--{if $post['gender'] == 1}-->
- <font style='filter: glow(color=green,strength=2); height:20px; padding:2px' color=#FFFFC8 face=Comic Sans MS><span class="bold">$post[avatar]</font>
- <!--{elseif $post['gender'] != 0}-->
- <font style='filter: glow(color=deeppink,strength=2); height:20px; padding:2px' color=white face=Comic Sans MS><span class="bold">$post[avatar]</font>
- <!--{else}-->
- <font style='filter: glow(color=blue,strength=2); height:20px; padding:2px' color=#FFFFC8 face=Comic Sans MS><span class="bold">$post[avatar]</font>
- <!--{/if}-->
- </td></tr></table>
复制代码
其中的颜色, 大家可根据自己或者会员的喜欢更改.
性别图标下载:https://discuz.dismall.com/attachment.php?aid=27107
[ 本帖最后由 whitegerry 于 2005-12-20 23:03 编辑 ] |