我为 zen cart 网站创建了一个主题,但我没有设置该网站的宽度。
网站上有一个水平滚动。
这是我的网站。 http://harleydragon.info
请告诉我如何解决这个问题?
风格不是很好。您包含多个 css 并多次重新定义主体。 阅读如何编写css,然后将其清理干净。
尝试以百分比设置宽度:
#wrapper { width: 100%; }
您可以使用
<style type="text/css">
body{
width:90% /* or you can also set 900px*/
}
</style>
你可以添加(或修改)一些css文件吗?
如果是设置
.your_website_class {
width: your_width px !important;
}
你的身体有这些
width: 1500px; // set appropriate width
height: 1600px; // remove this line
修复这些。