I have some custom-made widgets:
echo $before_widget;
if ( $title )
echo $before_title . $title . $after_title;
echo $output;
echo $after_widget;
Let's assume the $title is "Widget's Title" and the output is "Hello world".
I'm getting something like:
Widget's Title
Hello world
Now, I don't know where it comes, but there's container wrapping every one of my widgets, it looks like:
<li id="widgets-id" class="widget widget_name">
<h3>$title</h3>
<ul>
<li>$output</li>
</ul>
</li>
Any ideas how to change the first "li" into "section" or a "div"? :)
