如何设置网站的宽度?

时间:2012-03-28 12:26:21

标签: css width document-body

我为zen购物车网站创建了一个主题,但该网站的宽度不是我设置的。

网站上有水平滚动。

这是我的网站。 http://harleydragon.info

请告诉我如何解决这个问题?

5 个答案:

答案 0 :(得分:5)

风格不是很好。你要包括多个css并重新定义身体几次。 Read on how to write一个css然后把它弄干净。

enter image description here

答案 1 :(得分:1)

尝试以百分比设置宽度:

#wrapper { width: 100%; }

答案 2 :(得分:1)

您可以使用

<style type="text/css">
body{
    width:90% /* or you can also set 900px*/
}
</style>

答案 3 :(得分:0)

你能添加(或修改)一些css文件吗?

如果是,则设置

.your_website_class {
width: your_width px !important;
}

答案 4 :(得分:0)

你的身体有这些

width: 1500px;  // set appropriate width
height: 1600px; // remove this line

解决这些问题。