鹿泽鹿泽  2024-09-02 14:31:54 鹿泽笔记 隐藏边栏  1 

最近浏览博客,看到不少朋友这个底部的美化,我也觉得底部的这些按钮很好看,就想着用css设置一个样式,从而美化按钮方法,至此分享给大家。

教程分为两步,添加 css 样式和添加 HTML 代码即可如下(自定义)

效果图

WordPress底部自定义美化按钮的实现方法

1、主题设置—>全局设置—>自定义CSS样式代码:,添加以下 CSS 代码:

/*代码网站底部按钮美化
:root{--theme-color:#f04494;--focus-shadow-color:rgba(240,68,148,.4);--mian-max-width:1200px;}.github-badge {
    display: inline-block;
    border-radius: 4px;
    text-shadow: none;
    font-size: 12px;
    color: #fff;
    line-height: 15px;
    margin-bottom: 5px;
}
.badge-subject {
    display: inline-block;
    background-color: #4d4d4d;
    padding: 4px 4px 4px 6px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.github-badge .bg-blue {
    background-color: #007ec6;
}
.github-badge .bg-brightgreen {
    background-color: #4dc820;
}
.github-badge .bg-blueviolet {
    background-color: #8833d7;
}
.github-badge .badge-value {
    display: inline-block;
    padding: 4px 6px 4px 4px;
 border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.github-badge .bg-orange {
    background-color: orange;
}
.github-badge .bg-red {
    background-color: red;
}
/*代码网站底部按钮美化结束

2、主题设置—>底部设置—>网站底部右侧自定义链接,添加以下 HTML 代码:

<!--网站底部按钮美化-->
<div class="github-badge">

  <span class="badge-subject bg-blue">
     <a style="color:#fff" href="链接" target="_blank">自定义文字</a>
  </span>-
  <span class="badge-subject bg-brightgreen">
     <a style="color:#fff" href="链接" target="_blank">自定义文字</a>
  </span>-
  <span class="badge-subject bg-green">
     <a style="color:#fff" href="链接" target="_blank">自定义文字</a>
  </span>-
  <span class="badge-subject bg-orange">
     <a style="color:#fff" href="链接" target="_blank">自定义文字</a>
  </span>-
    <span class="badge-value bg-blueviolet">
     <a style="color:#fff" href="链接" target="_blank">自定义文字</a>
  </span>-
    <span class="badge-value bg-red">
     <a style="color:#fff" href="链接" target="_blank">自定义文字</a>
</div>
<!--网站底部按钮美化-->
1、文章版权归作者所有,未经允许请勿转载。
2、本站所有文章,如无特殊说明或标注,均为本站原创发布。任何在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们邮箱:526009505@qq.com进行处理。
3、咨询请联系QQ:526009505