Is it possible to link the <li> tags in widgets?
For example, normally the <a> tag is inside the <li> tag:
<div class="widget_archive">
<h3 class="footer-widget-title">Archive</h3>
<ul>
<li><a href="http://url.tld/2013/10/" title="Oktober 2013">Oktober 2013</a> (7)</li>
</ul>
</div>
But I want it like this:
<div class="widget_archive">
<h3 class="footer-widget-title">Archive</h3>
<ul>
<a href="http://url.tld/2013/10/" title="Oktober 2013"><li>Oktober 2013 (7)</li></a>
</ul>
</div>
I want the user to be able to click on the entire element, not just the link text.