Hey, I have spent hours trying to make a Joomla! Template work with vBulletin.
The problem that I am having so far is displaying the navigation correctly.
Here's the code from the Joomla! template;
Code:
<!-- BEGIN: MAIN NAVIGATION -->
<?php if ($tmpTools->getParam('ja_menu') != 'none') : ?>
<div id="ja-mainnav">
<?php if ($jamenu) $jamenu->genMenu (0); ?>
</div>
<?php if ($hasSubnav) : ?>
<div id="ja-subnav" class="clearfix">
<?php if ($jamenu) $jamenu->genMenu (1,1); ?>
</div>
<?php endif; ?>
<?php endif; ?>
<!-- END: MAIN NAVIGATION -->
Someone help me please!