WordPress标签云样式不起作用



在过去的几个小时中一直在混乱它。试图在标签上获得垂直空间,但没有运气...博客有一个单独的模板文件。

在这里实时链接http://soloveich.com/pr6/blog/

html代码

<div id="tagy">
widget code
</div>

CSS

#tagy {
margin-top: 20px !important;
}
#one h2 {
text-align: center;
width: 100%;
padding-top: 45px;
padding-bottom: 10px;
font-family: 'Raleway', sans-serif;
font-size: 26px !important;
color: #7e7e7e;
border-bottom-style: dotted;
border-bottom-color: #a6a6a6;
border-bottom-width: 1px;
}
 .seo-tag-cloud a {
margin: 10px;
padding: 7px;
background-color: #dddddd;
color: #666666;
font-size: 14px !important;
text-align: center;
}

display: inline-block添加到您的.seo-tag-cloud a样式中。默认情况下,锚是内联的,这意味着他们没有余量。

最新更新