When I hover over the "categories" menu - a sub menu opens, is there a way to disable it altogether?
Or is there a way to enable it to go only one generation down instead of opening it down to all of its descendants?
Thanks,
Avi.
<?php if($this->nestedcats): ?>
<!-- Categories Block Starts -->
<div class="block">
<!-- Heading Starts -->
<div class="block-top"><?php eprint(LangCategories); ?></div>
<!-- Heading Ends -->
<!-- Content Starts -->
<div class="block-bottom">
<!-- Items Starts -->
<div id="nested">
<?php echo $this->nestedcats; ?>
</div>
<!-- Items Ends -->
</div>
<!-- Content Ends -->
</div>
<!-- Categories Block Ends -->
<?php endif; ?>
<?php if($this->cats): ?>
<!-- categories Block Starts -->
<div class="block">
<div class="block-top"><?php eprint(LangCategories); ?></div>
<div class="block-bottom">
<ul>
<?php foreach($this->cats as $cat): ?>
<li><a href="<?php echo $cat->url; ?>"><?php echo $cat->name; ?></a></li>
<?php endforeach; ?>
</ul>
</div>
</div>
<!-- categories Block Ends -->
<?php endif; ?>
Users browsing this forum: No registered users and 1 guest