I didn't see anyone who had done this and it annoyed me so I figured I'd make something to fix it for myself. I decided that if it helps anyone they can use it as well.
This will make the Awards stat button fit in the top soldier area and will re-order the links to match the ordering in your stats.
var reorderIcons = false;
var handler = function() {
if (reorderIcons) return;
$("ul.base-header-soldier-nav > li > a").css("padding", "0px 8px");
var order = [];
var ul = $('ul.base-header-soldier-nav');
var els = $('ul.base-header-soldier-nav > li');
var last = 0;
$.each(els, function() {
switch ($(this).attr('data-page')) {
case 'stats':
current = 0;
break;
case 'weapons':
current = 1;
break;
case 'vehicles':
current = 2;
break;
case 'awards':
current = 3;
break;
case 'assignments':
current = 4;
break;
case 'dogtags':
current = 5;
break;
case 'loadout':
current = 6;
break;
case 'unlocks']);
});