0

因此,当在我的计算机上本地使用此站点时,将鼠标悬停在图像上时效果很好。但是,当我将网站放在服务器上时,图像不会出现。

我指的是带有灰色背景图像的链接。我专门为联系我们链接提供了 css。

http://bankruptcyimmigrationlaw.com/NEWSTARTLAW/Home.html

...

#Contact_us li:first-child a {
padding:9px 5px 15px 30px;
margin-top:25px;
background-image:url(../images/DefaultNavBg.png);
background-position:-30px -15px;
background-repeat:no-repeat;
height:76px;
width:350px;
border-bottom:none;
text-decoration:none;
}

#Contact_us li:first-child a:hover {
padding:9px 5px 0px 15px;
margin-top:25px;
background-image:url(../images/CurrentNavBg.png);
background-position:-30px -15px;
background-repeat:no-repeat;
height:76px;
width:350px;
border-bottom:none;
cursor:pointer;
text-decoration:none;
}
4

2 回答 2

0

看来您的图像不是您认为的位置,我收到 404。可能是您没有上传它,或者如果您在 Windows 上进行测试并部署到 *Nix,这可能是案例的问题文件(或目录)的名称。

于 2012-07-27T19:34:57.147 回答
0

您没有将图像发送到服务器:

http://bankruptcyimmigrationlaw.com/NEWSTARTLAW/images/CurrentNavBg.png

返回 404

提示:将 webbrowser 与一些王者inspector- 例如Chrome带有内置检查器或Firefox+的示例一起使用Firebug是每个网站管理员、webdevloper、webdesigner 等的最佳朋友。

编辑

尽量避免CaseMixing使用所有文件名和路径。这是错误和错误的非常原因,因此使用相同的小写变体肯定更好。

我最喜欢的符号is_lower_case_underscored.jpg

使用 hypen 是另一种推荐的方式,但是在使用 JavaScript 创建文件名时可能会出错,因为 hypen 可能会minus operator被意外识别。

于 2012-07-27T19:35:18.580 回答