为大家分享一个通过修改主题CSS文件来设置标签为随机颜色的方法。设置后效果如下图,让标签更为醒目。可能有些主题自带此效果,但有些主题是没有,下面的教程就以ripro主题为例。
一、修改diy.css
我们首先要到主题找到全局调用的.CSS文件,一般是diy.css文件,也有的是style.css文件,但一般是在“css”文件夹中。如果使用了子主题ripro-child,那就修改子主题中的diy.css,在css下部添加如下代码即可,注意检查css有无给你之前的美化冲突。
/**标签随机颜色**chinu.cn/
.article-categories { margin-bottom: 10px
}
.article-categories a { padding: 4px 10px; background-color: #19B5FE; color: white; font-size: 12px; line-height: 16px; font-weight: 400; margin: 0 5px 5px 0; border-radius: 2px; display: inline-block
}
.article-categories a:nth-child(5n) { background-color: #4A4A4A; color: #FFF
}
.article-categories a:nth-child(5n+1) { background-color: #ff5e5c; color: #FFF
}
.article-categories a:nth-child(5n+2) { background-color: #ffbb50; color: #FFF
}
.article-categories a:nth-child(5n+3) { background-color: #1ac756; color: #FFF
}
.article-categories a:nth-child(5n+4) { background-color: #19B5FE; color: #FFF
}
.article-categories a:hover { background-color: #1B1B1B; color: #FFF
}
.article-title { position: relative; margin-bottom: 15px; font-size: 26px; line-height: 1.3; display: block; font-weight: 400; margin: 0 0 35px; padding: 0 0 30px; border-bottom: 1px solid #e7e7e7; color: #FFF
}
二、修改entry-tags.php
这 一步是修改标签输出的位置,一般我们在主题文件中找到“entry-tags.php”进行修改即可。
1、同样以ripro主题为例,在主题文件中找到“entry-tags.php”,并编辑打开(注意子主题中不包含此文件)
2、然后把
<div class="entry-tags">
修改为下面代码即可。
<div class="article-categories">