inherit
139661
0
Jun 15, 2019 6:20:48 GMT -8
Robbie P. Blake
110
April 2009
driftin
|
Post by Robbie P. Blake on Jan 11, 2019 8:41:51 GMT -8
Forum URL: preludin.proboards.comHi, Is it possible to duplicate the navbar at the bottom of the page (I assume that's what it's called, the thing that looks like this:) It'd help people go back one board without having to scroll up if they're at the bottom of a thread. Thank you!
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,530
August 2015
socalso
|
Post by Scott on Jan 11, 2019 9:07:09 GMT -8
Robbie P. Blake , Go to Admin > Structure > Headers & Footers > Global Header & Footer. Place this code in the Global Header: <script type="text/javascript"> $(document).ready(function(){ var navTreeTop = $('#navigation-tree').offset().top + $('#navigation-tree').height(); $(window).scroll(function(){ if($(window).scrollTop() > navTreeTop && !$('#navigation-placeholder').length){ $('#navigation-tree').before('<div id="navigation-placeholder"></div>').insertBefore('footer'); $('#navigation-placeholder').height($('#navigation-tree').height()).css('margin-bottom',$('#navigation-tree').css('margin-bottom')); } else if($(window).scrollTop() < navTreeTop && $('#navigation-placeholder').length) { $('#navigation-tree').insertAfter('#navigation-placeholder'); $('#navigation-placeholder').remove(); } }); }); </script> Save Changes
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Jan 11, 2019 9:15:21 GMT -8
Forum URL: preludin.proboards.comHi, Is it possible to duplicate the navbar at the bottom of the page (I assume that's what it's called, the thing that looks like this:)It'd help people go back one board without having to scroll up if they're at the bottom of a thread. Thank you! Hi Robbie P. Blake I see Scott has a solution for your issue. I can help a bit with the terminology. The image you provided is of your Navigation Tree. The Navigation Bar on your forum (when viewed as a guest) looks like this:
|
|
inherit
139661
0
Jun 15, 2019 6:20:48 GMT -8
Robbie P. Blake
110
April 2009
driftin
|
Post by Robbie P. Blake on Jan 11, 2019 19:59:50 GMT -8
Thank you to both Scott and Retread for the help, much appreciated
|
|