刚刚写过《jimdo代码:jimdo博客标题栏及其时间部分(datetime)修饰和美化》之后诸葛草帽发现虽然博客文章的标题时间部分(说明:类似本页的标题。)改变了,但是博客列表处的博文标题(说明:类似本站首页那样,一个一个博文标题列表。)时间部分并没有变化,仔细看看发现这两个地方的显示时间的部分并不是用的同一个代码,所以补上这篇文章,官方的博客列表的原代码是:.blogselection,修改之后的代码是:
.blogselection .clearover .datetime .day
{
padding-top:3px;
font-size:12px;
line-height:13px;
}
.blogselection .clearover .datetime .mon
{
font-size:10px;
line-height:12px;
}
.blogselection .clearover .datetime .yr
{
display:block;
font-size:11px;
line-height:12px;
color:#ffffff;
text-align: center;
}
添加到css里保存/预览即可。
Write a comment