子比主题美化分享教程,文章卡片模式下添加三个点,仿Mac,具体效果请看https://www.macgf.com/
1.首先在主题设置里面把文章列表改为卡片模式
2.在主题设置-外观-自定义代码-自定义css里添加下面代码
3.查看效果
.posts-item.card {
padding: 35px 10px 10px 10px!important;
}
.posts-item {
position: relative !important;
}
.posts-item.card::before {
content: "";
display: block;
background: #fc625d;
top: 13px;
left: 15px;
border-radius: 50%;
width: 9px;
height: 9px;
box-shadow: 16px 0 #fdbc40, 32px 0 #35cd4b;
margin: 0px 2px -7px;
z-index: 1000;
position: absolute;
}
没有回复内容