-3

我正在制作一个 Weebly 网站,并想为主页制作不同的背景。我的主题不支持众多主题,有什么想法可以解决这个问题吗?

4

2 回答 2

0

参考这个。您可以使每个页面具有不同的背景。请参阅链接以获取一些有趣的示例。

<html>
<body background="bgimage.jpg">
<h1>Hello world!</h1>
<p><a href="http://www.w3schools.com">Visit W3Schools.com!</a></p>
</body>
</html>

试试这个 CSS 代码

<style type="text/css">
body { background-image:url(images/bg_fullpagehome.gif) }
</style>
于 2014-07-30T18:04:18.123 回答
0

我所知道的是你只能在身体区域添加一个背景。但是,如果您参考您的主页,您可以配置或自定义其背景的区域不止一个。

唯一的技巧是找到要编辑的选择器。还建议在使用图像作为背景时添加图像的完整 url。

尝试在您的主页标题代码框中添加以下内容:

<style>
#header {
background: red !important;
}
#topnav {
background: blue !important;
}
#nav-wrap {
background: yellowgreen !important;
}
#logo-wrap {
background: cyan !important;
}
#main-wrap {
background: green !important;
}
#main-wrap .container {
background: grey !important;
}
#main-wrap .inner-container {
background: silver !important;
}
#main {
background: orange !important;
}
#content {
background: indigo !important;
}
#header-wrap {
background: violet !important;
}
#footer-wrap {
background: yellow !important;
}
#footer {
background: black !important;
}
.blog-sidebar {
background: white !important;
}
.blog-body {
background: purple !important;
}
#banner-wrap {
background: brown !important;
}
</style>

并寻找变化。这可能不是最好的答案,但这是一个好的开始。您可以访问编辑 Weebly 背景的高级方式了解更多详情。

您还可以使用整页背景图像幻灯片来显示不同的背景。

于 2014-10-10T23:56:30.870 回答