Hi All,<br>
<br>
I love jifty thanks for making this excellent framework.&nbsp; I am
still a little new to jifty and have a web menu tab navigation
issue.&nbsp; The code I am using to build my menu is:<br>
<br>
my $top = Jifty-&gt;web-&gt;navigation;<br>
<br>
$top-&gt;child(&quot;Records&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/&quot;, sort_order =&gt; 1);<br>
$top-&gt;child(&quot;Work Order&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/workorder&quot;, sort_order =&gt; 2);<br>
$top-&gt;child(&quot;Grid Calibration&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/gridcalib&quot;, sort_order =&gt; 3);<br>
$top-&gt;child(&quot;Inventory&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/inventory&quot;, sort_order =&gt; 4);<br>
$top-&gt;child(&quot;BOMs&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/boms&quot;, sort_order =&gt; 5);<br>
$top-&gt;child(&quot;Schedules&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/schedules&quot;, sort_order =&gt; 6);<br>
$top-&gt;child(&quot;Manuals&quot;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; =&gt; url =&gt; &quot;/manuals&quot;, sort_order =&gt; 7);<br>
<br>
Then in my index.html I have:<br>
<br>
&lt;%init&gt;<br>
<br>
&nbsp; my $nav = Jifty-&gt;web-&gt;navigation-&gt;child(&quot;Records&quot; =&gt; url =&gt; '/');<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Grid Calibration&quot; =&gt; url =&gt; 'gridcalib', label =&gt; &quot;Grid Calibration&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Equipment Maintenance&quot; =&gt; url =&gt; 'equipmaint', label =&gt; &quot;Equipment Maintenance&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Environmental Conditions&quot; =&gt; url =&gt; 'envcond', label =&gt; &quot;Environmental Conditions&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;CARs&quot; =&gt; url =&gt; 'cars', label =&gt; &quot;CARs&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Meeting Minutes&quot; =&gt; url =&gt; 'meetingminutes', label =&gt; &quot;Meeting Minutes&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Internal Audits&quot; =&gt; url =&gt; 'internalaudits', label =&gt; &quot;Internal Audits&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Reviews&quot; =&gt; url =&gt; 'reviews', label =&gt; &quot;reviews&quot;);<br>
&nbsp;&nbsp;&nbsp; $nav-&gt;child(&quot;Training&quot; =&gt; url =&gt; 'training', label =&gt; &quot;training&quot;);<br>
<br>
&nbsp; &lt;/%init&gt;<br>
<br>
The problem is everything is jumbled together and not spaced
right.&nbsp; How can I change this?&nbsp; I want other tabbed areas
below this, how can I do that?&nbsp; I am really enjoying the
framework.&nbsp; Thanks again.<br>
<br>