2013-07-16 33 views

回答

0

這是您的navicon

.navicon a#terms { 
    display: block; 
    height: 27px; 
    width: 138px; 
} 

的CSS當你徘徊,您可以添加背景圖片。

.navicon a#terms:hover { 
    background: url("http://icpy.webs.com/button/Terms0.png") no-repeat scroll 0 0  transparent; 
} 

您需要將背景圖像添加到實際鏈接。

.navicon a#terms { 
    display: block; 
    height: 27px; 
    width: 138px; 
    background: url("http://icpy.webs.com/button/Terms0.png") no-repeat scroll 0 0  transparent; 
} 
1

你在CSS犯了一個錯誤的背景圖片:

.layicon a#semi{display: block;width:138px;height:27px;background:url(http://icpy.webs.com/button/semi.png) no-repeat;}. 

你在url屬性的前面加一個「回車」或\ n

嘗試使用Chrome中打開你的網站和然後檢查你的元素。 鉻會顯示你的背景設置是非法的。

相關問題