1
| [Root folder]\app\design\frontend\base\default\template\page\html\topmenu.phtml |
Just change the below coding
1
2
3
4
5
6
7
8
| <?php $_menu = $this->getHtml('level-top') ?><?php if($_menu): ?><div class="nav-container"> <ul id="nav"> <?php echo $_menu ?> </ul></div><?php endif ?> |
to
1
2
3
4
5
6
7
8
9
10
| <?php $_menu = $this->getHtml('level-top') ?><?php if($_menu): ?><div class="nav-container"> <ul id="nav"> <?php $_anyActive = false; foreach ($this->getStoreCategories() as $_category) { $_anyActive = $_anyActive || $this->isCategoryActive($_category); } ?> <li class="home level0 level-top"><a class="level-top" href="<?php echo $this->getUrl('')?>"><span><?php echo $this->__('Home') ?></span></a></li> <?php echo $_menu ?> </ul> </div><?php endif ?> |
No comments:
Post a Comment