inherit
202994
0
Apr 7, 2014 11:23:29 GMT -8
lefenuer
6
December 2013
lefenuer
|
Post by lefenuer on Feb 12, 2014 18:54:41 GMT -8
I've been trying to change the navigation bar to under the header banner but I can't find where or how to do it. The header is at the left side and the navigation bar is right next to it (at the right side) how can I change this? Thanks in advance
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Feb 13, 2014 9:41:59 GMT -8
He lefenuer, Can we have a link to your site and make it so it is viewable to guests (at least while we are helping you) as I can't visualize what you are asking to do. By default, the navigation bar is under the header banner so I'm not sure why yours is not.
|
|
inherit
203192
0
Sept 15, 2014 6:19:08 GMT -8
Muhammed Suleiman [Oldman]
Plugin Developer - Coder
164
December 2013
oldman
|
Post by Muhammed Suleiman [Oldman] on Feb 25, 2014 6:09:07 GMT -8
I've been trying to change the navigation bar to under the header banner but I can't find where or how to do it. The header is at the left side and the navigation bar is right next to it (at the right side) how can I change this? Thanks in advance That's Simple Follow my steps: 1: Go to Admin Home>Structure>Layout Templates>Forum Wrapper Then you can notice this <div id="navigation-menu" class="ui-helper-clearfix">
<ul role="navigation">
{foreach $[navigation.menu]}
<li>
<a{if $[navigation.menu.active]} class="state-active"{/if} href="$[navigation.menu.href]"{if $[navigation.menu.accesskey]} accesskey="$[navigation.menu.accesskey]"{/if}>
$[navigation.menu.name]
{if $[navigation.menu.notification.total]}
<div class="tip-holder" onclick="window.location='$[navigation.menu.notification.href]'; return false;">
<div class="tip-number">$[navigation.menu.notification.total]</div>
<span class="tip"></span>
</div>
{/if}
</a>
</li>
{/foreach}
</ul>
Search for <div id="banner-container" role="banner">
<h2 id="banner">
$[forum.title]
and put the Nevigation Code Above (under) this so it will look like this <div id="banner-container" role="banner">
<h2 id="banner">
$[forum.title] <div id="navigation-menu" class="ui-helper-clearfix">
<ul role="navigation">
{foreach $[navigation.menu]}
<li>
<a{if $[navigation.menu.active]} class="state-active"{/if} href="$[navigation.menu.href]"{if $[navigation.menu.accesskey]} accesskey="$[navigation.menu.accesskey]"{/if}>
$[navigation.menu.name]
{if $[navigation.menu.notification.total]}
<div class="tip-holder" onclick="window.location='$[navigation.menu.notification.href]'; return false;">
<div class="tip-number">$[navigation.menu.notification.total]</div>
<span class="tip"></span>
</div>
{/if}
</a>
</li>
{/foreach}
</ul>
|
|