inherit
211836
0
Sept 26, 2016 9:37:33 GMT -8
nekobot
224
July 2014
nekobot
|
Post by nekobot on May 15, 2015 21:05:35 GMT -8
Is there a way to move the header and navigation bar, so it spans across the entire top of the forum? instead of just aligned over the boards.
|
|
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 May 15, 2015 22:52:18 GMT -8
Is there a way to move the header and navigation bar, so it spans across the entire top of the forum? instead of just aligned over the boards. If you go into your forum wrapper template find the two lines below in bold(at around line 14,15) ....(Admin> Themes> Layout Templates>Forum Wrapper)
<div id="wrapper"> <header>
....and move them right above this.....
</header>
...that will move your banner and menu so it is out of the size you set for your forum (wrapper width).
If you prefer the nav tree (not menu but nav drop down bar) be directly above your forum rather than above the ad then move this...
$[header]
...so it is right below the </header>
So that little section once you make all those moves will look like this:
<div id="wrapper"> <header> </header> $[header]
|
|
inherit
211836
0
Sept 26, 2016 9:37:33 GMT -8
nekobot
224
July 2014
nekobot
|
Post by nekobot on May 17, 2015 8:54:05 GMT -8
Thank you!
|
|
inherit
211836
0
Sept 26, 2016 9:37:33 GMT -8
nekobot
224
July 2014
nekobot
|
Post by nekobot on May 17, 2015 8:56:19 GMT -8
Is there a way to make the navigation/title bars thicker/bigger?
|
|
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 May 17, 2015 12:23:39 GMT -8
Is there a way to make the navigation/title bars thicker/bigger? You can add this to the bottom of your style sheet: (Admin> Themes> Advanced Styles & CSS> Style Sheet>
/* change nav tree and title bar height */ .title-bar{height:40px; } #navigation-tree{padding:6px 0px 10px 0px; }
And just so you know the padding starts with the top and goes clockwise so the 6px is top, 0px is right, etc. I used padding rather than height so as to keep the arrow in the middle more.
|
|
inherit
211836
0
Sept 26, 2016 9:37:33 GMT -8
nekobot
224
July 2014
nekobot
|
Post by nekobot on May 17, 2015 13:04:55 GMT -8
Thank you for all the help!
|
|