水平滚动条 - WP 论文 - 为什么?
我的网站在底部显示一个水平滚动条 - 就好像我的主题右侧有很多额外的空间 - 但那里实际上什么也没有。
有人可以告诉我如何纠正这个问题吗?
我正在使用 Wordpress 3.0,带有全角框架的论文主题。
谢谢!!!
My site shows a horizontal scroll bar at the bottom -- it's like I have a lot of extra space to the right of my theme -- but there's really nothing there.
Can someone tell me how I can correct this?
I am using Wordpress 3.0, Thesis theme with the full-width framework.
Thanks!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道在什么浏览器中会出现此行为,但在 css 中,您可以使用
overflow-x:hidden
来隐藏水平滚动条I don't know in what browser you get this behavior but in css you can use
overflow-x:hidden
to hide the horizontal scrollbar首先你有这个元素:
分配给它的CSS:
你应该尝试使其:display:none;
First you have this element :
with this css asigned to it:
You should try to make it : display:none;
如果您可以简单地使用 WordPress 添加额外的 CSS 样式到主题,请添加以下样式:
如果您不能这样做,但可以编辑主题提供的原始样式表,请编辑“layout.css”文件(来自 url http://www.thedailytail.com/wp -content/themes/thesis_18/custom/layout.css?120410-40254 当我访问时),在第 21 行附近找到 .full_width 的样式并添加到行
让我们知道您的进展情况。
If you can add extra CSS styles to the theme simply using wordpress, add in the following style:
If you can't do that, but can edit the original stylesheets provided with the theme, edit the "layout.css" file (from url http://www.thedailytail.com/wp-content/themes/thesis_18/custom/layout.css?120410-40254 when I visited), somewhere around line 21 find the style for .full_width and add in the line
Let us know how you get on.