我正在为一个客户做一个网站。我已经测试了Chrome,IE 10,IE9等网站。但它似乎在她的电脑上,网站没有正确显示(标志重叠导航文本)。她正在使用Windows 32位,Internet 9。她没有兼容模式,我们已经试过了。还清除了缓存和网站数据。
在链接库下,我有一个滚动图像/链接,Dreamweaver自动将PHP脚本插入到html代码的头上。当我删除了这个链接后,网站就恢复了正常。我有点糊涂。
到网站的链接可以在这里找到(查看源代码应该显示所有代码等等):http://astrodeer.com/clare/
发布于 2013-11-26 06:31:05
为你的CSS尝试这个
#logo_container {
height: 50px;
margin-top: -20px;
width: 220px;
margin: 0 auto;
}
#logo_img {
height: 220px;
position: relative;
width: 220px;
z-index: 97;
}
#bridalgallery a {
background: #ffff00; /* use background:url(yourimage.png) */
padding: 10px;
display: block;
width:300px; /* use your image width */
height:300px; /* use your image heigth */
}
#bridalgallery a:hover {
background: #ffffff; /* use background:url(yourimagehover.png) */
padding: 10px;
display: block;
width:300px; /* use your image width */
height:300px; /* use your image heigth */
}https://stackoverflow.com/questions/20209662
复制相似问题