SO,
我正在构建一个页面,我希望在其中有一些文字(例如“联系我们”),然后是同一行上的图像或图标。我已经能够在JSfiddle中实现此效果,但是当我将相同的CSS和HTML传输到WordPress时,我的文本和我的图像总是在不同的行上,如您所见[{3}}。我无法弄清楚是什么阻止文本和图像保持在同一行。我以为我通过将此代码添加到我的主题的functions.php文件中来禁用autop:
// Remove WordPress Auto P
remove_filter( 'the_content', 'wpautop' );
// Auto P is also called in these filters, I'm just adding these lines for your information.
// If you want to disable them, uncomment
// remove_filter( 'the_content', 'wpautop' );
// remove_filter( 'the_excerpt', 'wpautop' );
// remove_filter( 'comment_text', 'wpautop' ); // <-- Be careful with this one
但也许我错了。我很尴尬地被一个看起来像这么简单的问题所困扰,但我希望有人可以解决这个问题。
提前致谢,
马卡
答案 0 :(得分:0)
添加:
.bodyheadtext {
float: left;
}
或从float: left
删除.bodyhead
。