共计 661 个字符,预计需要花费 2 分钟才能阅读完成。
如何替换修改zencart网站背景图背景图片我们首先要找到zencart替换背景图的地址:includestemplatesyourtemplatescssstylesheet.css
找到文件后下载下来,然后用dreamweaver打开,
输入body进行搜索,会找到一串代码,如下:
[php]
body {
margin: 0px;
font-family: arial, helvetica, sans-serif;
font-size: 70%;
color: #455;
background: url(../images/picture.gif) top center repeat fixed;
}
[/php]
替换下颜色的路径,就可以变换网站背景图
有的模版不一样,可能会找到的代码如下:
[php]
body {
margin: 0px;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 65%;
color: #000000;
background-color: #e2fed3;
}
a img {border: none; }
[/php]
不同点在颜色那行,所以可以把颜色这行代码替换掉,如下:
[php]
body {
margin: 0;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 65%;
color: #000000;
background: url(../images/picture.gif) top center repeat fixed;
}[/php]