Let's say I have a view that returns some items. I want to display the items in an unordered list, so I rewrite the field output with <li>[field]</li>
. Now I only have to surround the view with <ul>
and </ul>
tags.
However, when I add those tags as "full HTML" to the view's header and footer areas, they are being surrounded by a div
like so:
<div class="view-header">
<ul>
</div>
which kinda defeats the purpose, as the UL tag is ignored by some Browsers / jQuery versions.
How can I get rid of the div
s around the <ul>
?