我用的是2122和一个儿童主题。
我修改了主题,使“继续阅读”和“留下回复”(或“N条回复”)的链接出现在每篇帖子的同一行。为此,我将“Continue reading”元素指定为一个类(meta nav),并将“Leave a reply”或“XReplies”元素指定为一个类(reply count),并将float设置为right。
在Firefox中,结果看起来不错,但在IE 11、Chrome和Safari中,“继续阅读”元素会浮动到帖子内容中(请在我的临时站点上亲自查看:http://fosit.staging.wpengine.com/).
“继续阅读”要素的相关位置为:
内容。php
<div class="entry-content">
<?php the_content( __( \'<span class="meta-nav">Continue reading</span>\',
\'twentytwelve\' ) ); ?>
<?php wp_link_pages( array( \'before\' => \'<div class="page-links">\' . __( \'Pages:\',
\'twentytwelve\' ), \'after\' => \'</div>\' ) ); ?>
</div><!-- .entry-content -->
以及
样式。css
.meta-nav {
float: left;
margin-top: 10px;
color: #21759b;
}
我一直在阅读各种“clearfix”或空div补丁,但都无法正常工作。
建议?