The Navigation Bar is currently too crowded.
For an anonymous user, it looks somewhat fine, but still, ugly:
For a registered user with just at least 200 points, it looks quite cramped and very ugly:
For a super-administrator, it is extremely cramped, and horribly ugly.
Compare this to something like this:
It looks much neater. I have placed the "Featured !" and the tabs that cannot be seen by anonymous users, at the top.
It contains all the same links, but it looks neater and less cramped. As with all my previous attempts to add scripts through the Admin Panel, it worked through tampermonkey:
$("div.qa-main-wrapper").before("<ul class='qa-nav-admin'></ul>");
$("ul.qa-nav-admin").append($("li.qa-nav-main-admin"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-1"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-11"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-18"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-26"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-7"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-22"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-9"));
$("ul.qa-nav-admin").append($("li.qa-nav-main-custom-28"));
$("ul.qa-nav-admin").css("list-style-type", "none");
Unfortunately, however, it did not work through the actual admin panel : (
So, could the above-mentioned script please be added through the actual Q2A files?