-
AuthorPosts
-
fmfame Friend
fmfame
- Join date:
- October 2013
- Posts:
- 228
- Downloads:
- 4
- Uploads:
- 39
- Thanks:
- 8
- Thanked:
- 25 times in 1 posts
November 1, 2013 at 9:49 am #191901Hello.
Can i include a new block in header with classes of the off-canvas navigation, that i could include a seperate navigation for other menu-links?If yes, which lines did i have to add in layout blocks?
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
November 1, 2013 at 4:01 pm #510911If I understand you correctly, you want to create a second/separate horizontal main navigation?
Any chance you can throw together a screenshot mock-up of what you’re wanting to accomplish – for a visual example?
fmfame Friendfmfame
- Join date:
- October 2013
- Posts:
- 228
- Downloads:
- 4
- Uploads:
- 39
- Thanks:
- 8
- Thanked:
- 25 times in 1 posts
November 3, 2013 at 4:18 pm #511057Hello,
Here 2 sample pictures-
fmfame Friend
fmfame
- Join date:
- October 2013
- Posts:
- 228
- Downloads:
- 4
- Uploads:
- 39
- Thanks:
- 8
- Thanked:
- 25 times in 1 posts
November 3, 2013 at 4:21 pm #511058Look at the right side.
I want to add a separate menu for jomsocial and blogsites for users.. visible only for registered users.
my problem is, the jomsocial toolbar is cool but is always at the top of the content. If i make them fixed position, then i got problems with the navigation from fixel template..I need a solution for my problem
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 5, 2013 at 3:21 am #511192I read your description and screenshot several times but I am still confused at what you are trying to do. Anyways, you can see the navigation blocks in this file :
Open templates/ja_fixel/tpls/blocks/header.php file
<div class="nav-collapse collapse<?php echo $this->getParam('navigation_collapse_showsub', 1) ? ' always-show' : '' ?>">
<?php if ($this->getParam('navigation_type') == 'megamenu') : ?>
<?php $this->megamenu($this->getParam('mm_type', 'mainmenu')) ?>
<?php else : ?>
<div class="mainnav-wrap <?php $this->_c('navhelper') ?>">
<jdoc:include type="modules" name="mainnav" style="raw" />
</div>
<?php endif ?>
</div>and you can customize css style menu item from admin of JA Fixel template
+ Go to Admin site -> Extensions-> Template Manager ->ja_fixel – Default -> Mega menu button
fmfame Friendfmfame
- Join date:
- October 2013
- Posts:
- 228
- Downloads:
- 4
- Uploads:
- 39
- Thanks:
- 8
- Thanked:
- 25 times in 1 posts
November 6, 2013 at 9:13 am #511332Ok but then i have 2 times the same menu?
I want more flexibility and don’t want 2 same main navigationsNinja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 7, 2013 at 8:46 am #511429I would like to clarify that for many customization from css style and php code, you should hire a developer to carry out such work, customization support is out of JA support scope.
Or if you are a developer you can customize from JA Fixel templage as below
+ Open templates/ja_fixel/tpls/blocks/header.php file
From
<div class="nav-collapse collapse<?php echo $this->getParam('navigation_collapse_showsub', 1) ? ' always-show' : '' ?>">
<?php if ($this->getParam('navigation_type') == 'megamenu') : ?>
<?php $this->megamenu($this->getParam('mm_type', 'mainmenu')) ?>
<?php else : ?>
<div class="mainnav-wrap <?php $this->_c('navhelper') ?>">
<jdoc:include type="modules" name="mainnav" style="raw" />
</div>
<?php endif ?>
</div>Change to
<div class="nav-collapse collapse<?php echo $this->getParam('navigation_collapse_showsub', 1) ? ' always-show' : '' ?>">
<?php if ($this->getParam('navigation_type') == 'megamenu') : ?>
<?php $this->megamenu($this->getParam('mm_type', 'mainmenu')) ?>
<?php else : ?>
<div class="mainnav-wrap <?php $this->_c('navhelper') ?>">
<jdoc:include type="modules" name="mainnav" style="raw" />
</div>
<?php endif ?>
<jdoc:include type="modules" name="secondmenu" style="raw" />
</div>+ Go to Admin site -> Extensions -> Module Manager -> Create new module
Type: Menu
Position: secondmenu
Select Menu: select menu need to show+ Create new custom.css file into templates/ja_fixel/css folder and define css style with new secondmenu position.
AuthorPostsViewing 7 posts - 1 through 7 (of 7 total)This topic contains 7 replies, has 3 voices, and was last updated by Ninja Lead 11 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum