我为我的wordpress博客创建了一个自定义主题,我的小部件一直以无序的列表形式显示。我没有将我的小部件编程为这样显示。我不知道如何从我的小部件中删除项目符号。
我试着编辑小部件。wp中的php文件通过删除beforewiget和afterwidget参数来包含文件夹,但这似乎没有起到作用。我看了一下我的源代码,这就是小部件的包装。
<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>
所以看起来“catorgories 3”就是这个列表的来源。这是wordpress文件中设置的内容吗?我可以通过我的主题css修改它并将列表样式设置为“无”吗?