0

我的客户想在顶部导航栏下放置黑色背景。它可以在 http://seasonlawn.com/CellularSolutionsHTML/catalog.html 有人可以帮我如何在 css 中编码

4

4 回答 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

问题是您包含(在.categorymenus ul)中的图像未能包含/加载您可以起诉萤火虫检查

在此处输入图像描述

您需要做的是包含正确的路径,其他一切都可以

在此处输入图像描述

也有很多图片加载失败

在此处输入图像描述

于 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 回答