2011-10-13 87 views
0

我很難在我的wordpress主題中將所有小部件的樣式覆蓋應用到該項目中。我從零開始創建主題,所以我絕對沒有想法他們如何得到這些子彈。如何從Wordpress中的小部件中刪除項目符號

我想從列表中的項目中刪除項目符號。的HTML是:

<li id="categories-3" class="widget widget_categories"><h2 class="widgettitle">Categories</h2> 
     <ul> 
    <li class="cat-item cat-item-4"><a href="http://www.bignotch.com/category/big-notch-updates/" title="View all posts filed under Big Notch Updates">Big Notch Updates</a> (20) 
</li> 
    <li class="cat-item cat-item-5"><a href="http://www.bignotch.com/category/music_news/" title="View all posts filed under Music News">Music News</a> (50) 
</li> 
    <li class="cat-item cat-item-6"><a href="http://www.bignotch.com/category/ramblings/" title="View all posts filed under Ramblings">Ramblings</a> (43) 
</li> 
    <li class="cat-item cat-item-7"><a href="http://www.bignotch.com/category/site-news/" title="View all posts filed under Site News">Site News</a> (14) 
</li> 
    <li class="cat-item cat-item-8"><a href="http://www.bignotch.com/category/stuff-i-like/" title="View all posts filed under Stuff I Like">Stuff I Like</a> (25) 
</li> 
     </ul> 
</li> 
</div> 

這是我想出了到目前爲止的代碼似乎並不奏效:

li#categoryposts-3 li.cat-item {list-style: none;} 

我不知道在這一點上做的。

回答

0
li.widget ul, 
li.widget li { list-style: none; } 
+1

很可能不是在你的代碼的工作,因爲你的ID名稱不匹配。 '「categories-3」!=「categoryposts-3」' –

+0

非常感謝。 –

+0

太棒了!我的榮幸。 –

0
#categoryposts-3 ul { 
    background-image: none; list-style: none; 
} 
0

使用在你的CSS中的重要關鍵詞,如:!

li{ 
list-style:none !important; 
} 
1

它必須是

li#categories-3 {background-image: none; list-style: none;} 
li#categories-3 li.cat-item {background-image: none; list-style: none;} 
  1. 有一個錯誤的ID
  2. 你需要兩種款式
0

下面的代碼從列表中刪除項目符號。

<li style="list-style: none;" class="cat-item cat-item-4"><a href="http://www.bignotch.com/category/big-notch-updates/" title="View all posts filed under Big Notch Updates">Big Notch Updates</a> (20) 
 
</li> 
 
<li style="list-style: none;" class="cat-item cat-item-5"><a href="http://www.bignotch.com/category/music_news/" title="View all posts filed under Music News">Music News</a> (50) 
 
</li> 
 
<li style="list-style: none;" class="cat-item cat-item-6"><a href="http://www.bignotch.com/category/ramblings/" title="View all posts filed under Ramblings">Ramblings</a> (43) 
 
</li> 
 
    <li style="list-style: none;" class="cat-item cat-item-7"><a href="http://www.bignotch.com/category/site-news/" title="View all posts filed under Site News">Site News</a> (14) 
 
</li> 
 
    <li style="list-style: none;" class="cat-item cat-item-8"><a href="http://www.bignotch.com/category/stuff-i-like/" title="View all posts filed under Stuff I Like">Stuff I Like</a> (25) 
 
</li>

相關問題