May 15, 2009 • posted by KickApps
You can throw this in your JS files: $j(“li#ka_audioTab”).appendTo(“#ka_headerTopNav_ul”) Reordering Tabs in Nav. (not adding) Example 1. insert Before <script> $(document).ready(function(){ $j(“link1″).insertBefore(“link2″); // where link is put the id_s of things you wont to reorder }); </script> Example 2. insert After <script> $(document).ready(function(){ $j(“link1″).insertAfter(“link2″); // where link is put the id_s of [...]