Hello, I am looking for way to create such menu:
<ul class="main-nav clear">
<li class="active">
<a href="#">
<span>Menu Item 1</span>
</a>
</li>
<li>
<a href="#">
<span>Menu Item 2</span>
</a>
</li>
<li>
<a href="#">
<span>Menu Item 3</span>
</a>
</li>
</ul>
However, it looks like CMSMenu control does not support that. It always adds some hardcoded classes which are not needed for me. Also it does not have possibility to put span's inside href nodes. And I do not like the way it adds class for each li item.
Is there any possibility to achieve such structure using standard controls and without creating own?