Как удалить пули из виджетов в Wordpress - PullRequest
0 голосов
/ 13 октября 2011

У меня возникли трудности с применением переопределения стиля ко всем виджетам в моей теме 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;}

Я понятия не имею, что делать в этомточка.

Ответы [ 5 ]

1 голос
/ 13 октября 2011

Это должно быть

li#categories-3 {background-image: none; list-style: none;}
li#categories-3 li.cat-item {background-image: none; list-style: none;}
  1. Неправильный идентификатор
  2. Вам нужны два стиля
0 голосов
/ 14 сентября 2017

Приведенный ниже код удаляет маркеры из списка.

<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>
0 голосов
/ 13 октября 2011
li.widget ul,
li.widget li { list-style: none; }
0 голосов
/ 13 октября 2011

Используйте ключевое слово! Important в своем CSS, например:

li{
list-style:none !important;
}
0 голосов
/ 13 октября 2011
#categoryposts-3 ul {
    background-image: none; list-style: none;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...