admin 发表于 2022-7-5 12:18:51

discuz 注册按钮美化其他按钮同理



【不推荐】位置:data/template /1_1_member_login_simple.tpl.php
【推荐】位置:template/default/member/login_simple.htm
搜索:
<td><a href="member.php?mod={$_G}" class="xi2 xw1">$_G['setting']['reglinkname']</a></td>

修改成以下代码
<td><div class="j"><a href="member.php?mod={$_G}" class="xi2 xw1">$_G['setting']['reglinkname']</a></td>

代码:
.j 是函数 可随便你修改
比如 .yqmlj
<style type="text/css">

.j a {
    display: block;
width: 80px;
    margin: 0px auto;
    height: 30px;
    line-height: 30px;
    color: #fff;
    border-radius: 25px;
    background: linear-gradient(-90deg,#51cfe4,#389ef3);
    font-size: 8px;   字体小就删掉
    transition: .2s;
    text-align: center;
    box-shadow: 0 3px 7px rgba(0,0,0,0.14);
      text-decoration: none;
}
.j a:hover {
    background: linear-gradient(-90deg,#389ef3,#51cfe4);
color: #fff;
}</style>

把这些代码插入网站第三方统计代码中



效果   有能力的都可以修改





页: [1]
查看完整版本: discuz 注册按钮美化其他按钮同理