我的客户想在顶部导航栏下放置黑色背景。它可以在 http://seasonlawn.com/CellularSolutionsHTML/catalog.html 有人可以帮我如何在 css 中编码
问问题
81 次
4 回答
2
在文本编辑器中打开default.css
文件并更改以下代码:
#headertop {
width: 100%;
min-width: 1130px;
padding-bottom: 7px;
background: url("../images/topnav-rep.png") repeat-x left top transparent;
height: 32px;
position: fixed;
z-index: 99999;
top: 0;
left: 0;
border-top: 1px solid grey;
margin-top: -1px;
}
到
#headertop {
width: 100%;
min-width: 1130px;
padding-bottom: 7px;
background: #000000;
height: 32px;
position: fixed;
z-index: 99999;
top: 0;
left: 0;
border-top: 1px solid grey;
margin-top: -1px;
}
目前的问题是../images/topnav-rep.png
图像无法访问。在上面的行中,我们删除了图像并将#headertop
元素的背景颜色设为黑色(十六进制 - > #000000)。
于 2012-12-21T06:18:43.613 回答
2
于 2012-12-21T06:13:47.800 回答
0
<div class="categorymenus" style="display: block;background: url("http://www.lacovachamiami.com/images/layout/lightBackgound.png") repeat ;">
于 2012-12-21T06:46:45.003 回答
0
为此类添加背景颜色
#main-nav .categorymenus{background-color:#000;}
.categorymenus ul{here background image failed to load check this once}
于 2012-12-21T06:13:03.150 回答