水平滚动条 - WP论文 - 为什么?

时间:2010-12-04 15:19:51

标签: html css wordpress wordpress-thesis-theme

我的网站在底部显示了一个水平滚动条 - 就像我的主题右边有很多额外的空间 - 但那里真的没什么。

有人可以告诉我如何纠正这个问题吗?

我正在使用WordPress 3.0,论文主题与全宽框架。

感谢!!!

3 个答案:

答案 0 :(得分:2)

我不知道在哪种浏览器中你会得到这种行为,但在css中你可以使用overflow-x:hidden来隐藏水平滚动条

html, body {overflow-x:hidden;}

答案 1 :(得分:1)

首先你有这个元素:

<button value="" name="sa" type="submit" class="googlesearch-btn"></button>

将此css分配给它:

.googlesearch-btn {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    cursor: pointer;
    height: 37px;
    left: 267px;
    position: relative;
    top: -35px;
    width: 35px;
}

你应该尝试制作它:display:none;

答案 2 :(得分:0)

如果您只需使用wordpress即可为主题添加额外的CSS样式,请添加以下样式:

.full_width {
    overflow:hidden;
}

如果您不能这样做,但可以编辑主题提供的原始样式表,请编辑“layout.css”文件(当我访问时来自网址http://www.thedailytail.com/wp-content/themes/thesis_18/custom/layout.css?120410-40254),在第21行的某处找到样式对于.full_width并添加行

overflow:hidden;

告诉我们你是如何上场的。