Hi There,
I've just come to Drupal, and I've had a look around and can't find anything much to answer my query.
We've been using Joomla at work, at it feels like bloatware and indignified compared to Drupal so a major thank you to the developers for such a wonderful product.
Im now trying to push Drupal at work and get this in place instead, as I believe it is technically superior in everyway.
But I need to replicate our sites home page. And unfortunately, we get into the situation where designers don't design anything for the benefit of the programmer, and so while Drupals menuing system is great for mindless repetition of infinite levels, it doesn't work when you're restricted by graphics designers.
So for example, our menus can only be upto two items deep, but also, we find we have to produce a structure like:
<ul>
<li><a href="#" class="top">Item 1</a></li>
<li><a href="#">item 2</a></li>
<li><a href="#" class="active">item 3</a>
<ul>
<li><a href="#">submenu 1</a></li>
<li><a href="#">submenu 2</a></li>
</ul>
</li>
</ul>
Hrm - Ok, probably not the best example in the world, but where Drupal only appears to cater for on or off, and not first item in the list, or last item in the list etc, it makes it rather difficult.