-1

这是我的网站: 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}
4

1 回答 1

1

标题是单页的跨度,因此a.Title不适用。

.Post a.Title您可以通过更改为来修复它.Post a.Title, .Post span.Title

于 2013-07-01T18:55:31.160 回答