如何自定义标签' Blogger中的标题?

时间:2015-06-23 12:38:19

标签: html css blogger

虽然听起来很愚蠢,但我似乎无法自定义标签'标题,在Blogger中。我尝试了各种不同的方法和标签来实现我想要的外观,但它似乎无法正常工作。我试过在标签之间插入CSS编码,但无济于事。以下编码也没有奏效。

.post-labels { 
letter-spacing: 0.09em !important;
font: arial 8px #666666 !important;
text-transform: uppercase !important;
margin: -1% 0% -1% 0% !important;
} 

.post-labels a { 
font-weight: normal!important; 
text-decoration: none!important; 
} 

我也尝试了以下开场标签,但它们似乎都没有效果:

#post-labels a {
#post-labels {
.post-labels a {
 .post-labels {

我还尝试添加"!important"在每个元素的最后,即使没有工作。让我感到惊讶的是,有些元素似乎有效,而其他元素却没有。例如,text-align,text-transform,font-weight和text-decoration元素可以工作,但字体(大小,族和颜色),字母间距和边距元素不起作用。我已经尝试了我可能想到的所有可能的变化,但我似乎无法实现我想要的标签'报头中。

我博客的网址如下:http://www.blankesque.com

任何帮助将不胜感激。先感谢您。

IRAM

1 个答案:

答案 0 :(得分:0)

你应该使用

font: arial 8px !important;
color: #666666 !important;

而不是

font: arial 8px #666666 !important;

因为font属性的CSS语法不包含颜色。此外,margin-topmargin-bottom值不适用于<span>元素(除非您给它float)。

除此之外,我看到一切都运转良好。