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

推荐订阅源

D
DataBreaches.Net
T
Threatpost
N
News and Events Feed by Topic
PCI Perspectives
PCI Perspectives
V2EX - 技术
V2EX - 技术
D
Docker
G
Google Developers Blog
Microsoft Security Blog
Microsoft Security Blog
N
News and Events Feed by Topic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
Google Online Security Blog
Google Online Security Blog
The GitHub Blog
The GitHub Blog
Hacker News - Newest:
Hacker News - Newest: "LLM"
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
T
Troy Hunt's Blog
Webroot Blog
Webroot Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
量子位
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
F
Full Disclosure
B
Blog
O
OpenAI News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
Google DeepMind News
Google DeepMind News
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Engineering at Meta
Engineering at Meta
大猫的无限游戏
大猫的无限游戏
Forbes - Security
Forbes - Security
Know Your Adversary
Know Your Adversary
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Scott Helme
Scott Helme
T
The Exploit Database - CXSecurity.com
博客园 - 聂微东
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
Recorded Future
Recorded Future
IT之家
IT之家
Project Zero
Project Zero
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
Attack and Defense Labs
Attack and Defense Labs
L
Lohrmann on Cybersecurity
SecWiki News
SecWiki News
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

Evan's Space

ZUI.RE:一个域名的非典型归宿,以及我对”看新闻”这件事的重新理解 zui.re 上线记:把最热两个字,变成新闻站 30 秒,让你的 Mac 拥有一个不会忘事的剪贴板 PIXPRO主题基础安装教程(持续更新) PIXPRO主题安装教程:XLoader PHP扩展的安装与配置 Marvis 实战:用 AI 打造一个每天自动更新的天蝎座运势站 OPC创业范式的真相,及AI时代域名需求的隐性爆发 AstraFlow星图大模型“算力超市”的羊毛来了! 狐蒂云破产清算,你还能用什么主机? Design.md 资源导航 Design.md + Refero:让 AI 设计网站告别“AI 味”,输出更像专业作品 二次创作的 tab-out:让我的”标签页囤积症”康复了 QoderWake:把 Agent 做成“同事”的那条路 当那级台阶消失时 Pix主题16:修复消息盒子默认显示“未读消息” 向外求索的情绪稳定:一场注定疲惫的追逐 关于“习惯性吐槽”的一些思考 设计AI双生子:选星流还是Lovart,取决于你的需求而非价格 EvanMi 全新升级:米表从此更好用 xmlrpc.php 是什么?为什么它成了黑客的最爱? 两大开源 AI 框架对比:DeerFlow 和 OpenClaw 有何不同? MiMo-V2系列模型(MiMo-V2-Pro & MiMo Claw) SSL.CAB:让HTTPS证书像空气一样存在,却从不过期 如何网申QClaw第二批内测邀请码 别信一见钟情,网站都是”养成系” 宝塔面板实现域名纯跳转完整教程 AI 上战场?这档播客扒清了 Claude 参战的真相 什么才是未来教育的核心价值? 播播鸡“食用”指南:在中文播客的街角,与惊喜不期而遇 我用 Anygen 把中文播客圈‘鸡’化了:一份零代码榜单的诞生记 且听App:罗永浩的AI讲书新作,如何用声音重塑阅读? 捷径的悖论:为什么最快的路,往往走得最远?
PIXPRO主题魔改教程(持续更新)
Evan · 2026-05-28 · via Evan's Space

注意⚠️
1. 本教程内容,仅限于阶段性使用,版本更新后可以直接设置;
2. 程序搭建环境存在差异,使用前需慎重评估,教程只供学习,不对使用后果负任何连带责任。

3. 转载,请注明出处!

一、封面元素修改

  1. 后台:外观 ➤ 自定义 ➤ 额外CSS
  2. 直接把下面的代码粘贴进去即可(信息都改成自己的)

/* 临时改封面 */
img[src*="banner.jpg"],
img[data-src*="banner.jpg"] {
    content: url('https://000.COM/xxx.webp') !important;
    width: 100% !important;
    height: 100% !important;
}
/* 1. 替换文字:MICAH → Evan */
.info .name {
    visibility: hidden;
    position: relative;
}
.info .name::after {
    content: 'Evan';
    visibility: visible;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* 2. 替换文字:Born for design → Keep it real */
.info .des {
    visibility: hidden;
    position: relative;
}
.info .des::after {
    content: 'Keep it real';
    visibility: visible;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

/* 3. 替换头像 */
.ava img,
.ava img[src*="ava.png"],
.ava img[data-src*="ava.png"] {
    content: url('https://000.COM/avatar.png') !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

二、边栏板块距离调整

.wid-p {
  margin-bottom: -10px;
}

三、边栏评论板块宽度调整

ol, ul {
    padding-left: 0;
}

四、隐藏右上角搜索和发布

.cls-search.item,
.cls-publish.item {
    display: none !important;
}

© 2026 EVAN.XIN · Attribution Required