惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
D
Docker
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
美团技术团队
V
V2EX
Last Week in AI
Last Week in AI
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
B
Blog RSS Feed
博客园_首页
B
Blog
博客园 - 叶小钗
I
InfoQ
WordPress大学
WordPress大学
L
LangChain Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
A
About on SuperTechFans
The GitHub Blog
The GitHub Blog
The Register - Security
The Register - Security
MyScale Blog
MyScale Blog
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Latest news
Latest news
W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
小众软件
小众软件
Cyberwarzone
Cyberwarzone
Scott Helme
Scott Helme
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
CERT Recently Published Vulnerability Notes
C
CXSECURITY Database RSS Feed - CXSecurity.com
Recent Commits to openclaw:main
Recent Commits to openclaw:main
N
News and Events Feed by Topic
S
Secure Thoughts
The Hacker News
The Hacker News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News

小小孩

vaultwarden 部署 - 小小孩 前端项目路径别名终极解决方案 - 小小孩 如何在 Bing 和 百度搜索中去除 CSDN 搜索结果 Nginx 安装 brotli 模块 - 小小孩 JavaScript 高性能现代网页截图 - 小小孩 JS 深拷贝终结者 structuredClone - 小小孩 http 协议头 Content-Disposition 的作用 - 小小孩 Echarts示例 Demo 合集网站 - 小小孩 LNMP Nginx 安装 brotli 模块
去除宝塔面板一些无用的页面信息 - 小小孩
小小孩 · 2001-11-11 · via 小小孩

去除宝塔面板一些无用的页面信息

小小孩

本文最后更新于2024年11月11日,已超过579天没有更新,若内容或图片失效,请留言反馈。

通过 CSS 去除宝塔面板的一些广告信息

9.2.0 稳定版本

免费版专用,去除一切需要需要付费才能玩的东西

  1. 文件夹进入 /www/server/panel/BTPanel/static/vite/css
  2. 双击修改 style.css
  3. 在 @charset "UTF-8"; 换行之后添加如下代码

    .recom-bg,
    .recom-view,
    .recom-btn,
    .advantage-view,
    .wrapper .wrapper-item:has(> .text-center > .absolute),
    .icon-unpaid-ltd,
    .menu-item.menu-waf,
    #tab-PanelReport,
    #tab-safeDetect,
    #tab-contDetect,
    #tab-phpSite,
    #tab-intrusion,
    #tab-system,
    #tab-logAudit,
    #tab-sshLogs,
    #tab-taskSchedule,
    #tab-loginLog,
    #tab-systemAccount
    {
      display: none!important;
    }

8.0.5 版本

  1. 文件夹进入 /www/server/panel/BTPanel/static/vite/css
  2. 双击修改 style.css
  3. 在 @charset "UTF-8"; 之后添加如下代码

    .module-box .wrapper-item{
     margin-left: -1px;
     margin-top: -1px;
     border: 1px solid rgba(236,236,251,var(--tw-border-opacity))!important;
    }
    #updata_pro_info,
    .h-auto:has(> .advantage-view),
    .module-box .wrapper-item:has(> .text-center > .absolute),
    .module-box .wrapper-item:nth-child(n+13){
     display: none!important;
    }

8.0.5 之前的版本

  1. 文件夹进入 /www/server/panel/BTPanel/static/css
  2. 双击修改 site.css
  3. 添加以下代码

    #home-recommend,.btltd-gray,.soft-man .col-lg-3:not([data-id]),.footer,#updata_pro_info {
     display: none!important;
    }
    .bt-warp>.container-fluid {
     padding: 0!important;
    }
    .container-fluid{
     padding-bottom: 15px!important;
    }