Hi Yiiers,
I just started working with Yii, and I am having some trouble converting my HTML Megamenu to Yii. Basically my html is something like this:
<div class="nav-wrapper">
<div class="container">
<ul class="some_class">
<li class="active"><a href="#">Parent 1</a>
<div class="megamenu">
<div class="row">
<a href="#" class="overview">Child 1</a>
</div>
<div class="row">
<div class="col1">
<ul>
<li><a href="#">Child 3</a></li>
<li><a href="#">Child 4</a></li>
</ul>
</div>
</div>
</div>
</li>
</ul>
</div>
</div>
Adapting this to CMenu widget is proving more difficult than I thouht…especially for e starter like me. I can come up with the classes and lists, but how do I put the Divs within the CMenu Widget?
Thanks