这是我的网站: http: //oldtimesdaily.tumblr.com/
在我的索引中,我的帖子的标题是链接,而单个帖子没有。但我希望它们看起来相同,因此我将 class="Title" 添加到两者中,但它仅适用于索引页面。
这是代码
CSS
.Post a.Title {
display:block;
line-height: 1.4;
color: #222;
margin-bottom:22px;
font-family:QuicksandBold, Helvetica, Arial, sans-serif;
margin: 0px 25px 10px; /* Post Title */
font-weight: bold;
letter-spacing: 2px;
text-transform:uppercase;
text-decoration:none;
border-bottom:0px;
}
.Post a.Title:hover {
color: #300000 ;
}
.Post.Single a.Title {
margin-bottom:11px;
}
和 HTML
<div class="Text">
{block:Title}
{block:IndexPage}
<a href="{Permalink}" target="_blank" class="Title">{Title}</a>
{/block:IndexPage}
{block:PermalinkPage}
<span class="Title">{Title}</span>
{/block:PermalinkPage}
{/block:Title}