我是一名主修計算機科學和網絡開發的大學生,所以我仍然在學習一切。博客評論是從我的CSS搞砸了
我的一位客戶有一位博主,她問我是否可以做幾件事情,比如做一個導航欄並鏈接事情等等。所以在做了導航欄之後,我發現她的評論都搞砸了。我不確定它是否是導航欄中的CSS或其他內容。
我的導航欄代碼:
<style>
#logo-bloglovin:hover,#logo-bloglovin:active { background-position:0 -64px; }
#logo-facebook
{
background-position:-210px 0px;
}
#logo-facebook:hover,#logo-facebook:active { background-position:-210px -64px; }
#logo-instraram
{
background-position:-420px 0px;
}
#logo-instraram:hover,#logo-instraram:active { background-position:-420px -64px; }
#logo-googleplus
{
background-position:-660px 0px;
}
#logo-googleplus:hover,#logo-googleplus:active { background-position:-660px -64px; }
#logo-contact
{
background-position:-880px 0px;
}
#logo-contact:hover,#logo-contact:active { background-position:-880px -64px; }
ul.chicnav {
border: none !important;
display: block;
list-style: none;
}
li{
display: inline-block ;
}
ul.chicnav li a {
width:210px;
height:62px;
text-decoration:none;
display:block;
border: none !important;
background: url('http://i47.tinypic.com/280nmtx.png') 0 0 no-repeat;
}
ul.chicnav li a:hover {
background-color: transparent !important;
}
</style>
<ul class="chicnav">
<li><a href="http://www.bloglovin.com/blog/3798040/chic-fashion-world" id="logo-bloglovin" > </a></li>
<li><a href="http://www.facebook.com/pages/Chic-Fashion-World/248420155275530" id="logo-facebook" > </a></li>
<li><a href="http://instagram.com/borka12/" id="logo-instraram" > </a></li>
<li><a href="https://plus.google.com/109438806289588533953/posts" id="logo-googleplus" > </a></li>
<li><a href="http://chicfashionworld.blogspot.com/p/contact.html" id="logo-contact" > </a></li>
</ul>
的博客住在chicfashionworld.com。我在chicfashionworldtest.blogspot.com上做了一些改進的測試頁面。如果您對我有任何建議,請告訴我。
只是一個註釋 - 你可能希望有這種不定型的圖片在本地移動,以防一旦從tinypic中移除一天。另外,可能造成評論混亂的原因是由於你修改了ul/li代碼。 – jsanc623 2013-02-15 18:28:18
@ jsanc623我打算在我爲她製作的保管箱上做這件事,或者像你說的那樣在當地做這件事謝謝你提醒我,我現在要去看看我的ULLI – 2013-02-15 18:42:49
再次提示不要使用保管箱 - 這不是有效的解。在本地託管它。 – jsanc623 2013-02-19 20:13:11