背景图片我们首先要找到zencart替换背景图的地址:includes\templates\yourtemplates\css\stylesheet.css 找到文件后下载下来,然后用dreamweaver打开, 输入body进行搜索,会找到一串代码,如下: body { margin: 0px; font-family: arial, helvetica, sans-serif; font-size: 70%; color: #455; background: url(../images/picture.gif) top center repeat fixed; } 替换下颜色的路径,就可以变换网站背景图 有的模版不一样,可能会找到的代码如下: body { margin: 0px; font-family: verdana, arial, helvetica, sans-serif; font-size: 65%; color: #000000; background-color: #e2fed3; } a img {border: none; } 不同点在颜色那行,所以可以把颜色这行代码替换掉,如下: body { margin: 0; font-family: verdana, arial, helvetica, sans-serif; font-size: 65%; color: #000000; background: url(../images/picture.gif) top center repeat fixed; } fixed是可以去掉的,这样背景可以移动,如果不去掉 ,背景就是固定的。 好的,这样最模板网站背景图就修改好了。 (责任编辑:最模板) |