Hello,
I'm new to ProcessWire and I love using it so far. Using Runway CMS for years, It's simply easy to use both for myself and the client.
I'm almost finish with a project, but stuck on the menu. I'm not good in PHP, so I will need a bit of help.
My menu structure:
Home
- Laser treatment
-- Acne
-- Etc...
- Contact us
HTML:
<nav class="menu">
<ul>
<!-- If the menu has child -->
<li class="menu-item-has-children">
<!-- notice the href="#" below with no real url value -->
<a href="#" class="menu_link ">treatments<i class="icon-chevron-down"></i></a>
<div class="sub-menu mega-menu">
<div class="list-item">
<ul>
<li>
<a href="/laser-treatment/acne-kviser">Acne</a>
</li>
</ul>
</div>
</div>
</li>
<!-- If the menu has no child -->
<li>
<a href="/contact-us">Contact us</a>
</li>
</ul>
</nav>
I have tried menuBuilder, But it does not meet my menu structure. As well as MarkupSimpleNavigation.
Any help will be appreciated...
Thanks in advance