Wordpress .entry-content 类将无法与侧边栏正确对齐
我在尝试在 Wordpress Twentyeleven 主题的页面上启用侧边栏时遇到了另一个愚蠢的问题。
我已经给出了我的 .entry-content
类:
.entry-content {float:left !important;width:648px !important;}
请原谅那些 !important
,我只是不敢编辑默认的 style.css< /code>...
现在我已经
<?php get_sidebar(); ?>
在 page.php
末尾添加了 get_footer
内容...并且侧边栏显然显示在我的 下.entry-content
,在右侧......
我已经尝试给侧边栏一个float:right
,但它仍然不会浮动。
I've encountered another silly problem while trying to enable sidebar on pages on Wordpress Twentyeleven theme.
I've given my .entry-content
class:
.entry-content {float:left !important;width:648px !important;}
excuse me for those !important
s, I just don't dare to edit the default style.css
...
Now I've added
<?php get_sidebar(); ?>
By the end of page.php
, just above the get_footer
stuff... and sidebar apparently displays UNDER my .entry-content
, on the right hand side....
I've trying giving the sidebar a float:right
, but it still won't float.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
内有一个
。
设置主div的宽度就解决了。
像这样:
#primary {width:400px;}
Inside
<div id="main">
you have a<div id="primary">
.Set a width on the primary div and this is solved.
Like this:
#primary {width:400px;}