larryd
12-30-2010, 04:02 PM
Just as a test I have the following on my custom vb page.
$navbits = construct_navbits(array('index.php' => 'Forum Home', '' => 'Sub Page1 below forum home', '' => 'Sub Page2 below forum home', '' => 'Sub Page3 below forum home'));
$navbar = render_navbar_template($navbits);
When the page renders all I see is
The Icon for Home
Link to Home
The Arrow Icon
Text "Sub Page3 below forum home"
Why am I not seeing the other items?
--------------- Added 1293732481 at 1293732481 ---------------
nm, i missed the obvious array misformat.
$navbits = construct_navbits(array('index.php' => 'Forum Home', '' => 'Sub Page1 below forum home', '' => 'Sub Page2 below forum home', '' => 'Sub Page3 below forum home'));
$navbar = render_navbar_template($navbits);
When the page renders all I see is
The Icon for Home
Link to Home
The Arrow Icon
Text "Sub Page3 below forum home"
Why am I not seeing the other items?
--------------- Added 1293732481 at 1293732481 ---------------
nm, i missed the obvious array misformat.