我该如何将标题“BOASISH正在建设中”放在中心位置,但保留为Kyle Boas·Follow:Twitter、Google+
2014年9月4日。我的网站是http://boasish.com,如果你得到一个错误页面,那么使用http://orangina.asmallorange.com/~boasishc/作为url而不是http://boasish.com

<h2 class="entry-title" itemprop="headline"><a href="http://orangina.asmallorange.com/~boasishc/site-under-construction/" rel="bookmark">Boasish is Under Construction</a></h2>
    <a href="http://orangina.asmallorange.com/~boasishc/site-under-construction/" rel="bookmark">Boasish is Under Construction</a>
</h2>

最佳答案

您可以将此代码添加到css中

.entry-header h2{
   text-align: center;
   width: 100%;
}

或者添加这个代码
.entry-header{
   text-align: center;
}

header .entry-meta{
   text-align: left;
}

10-04 22:20