Hi,
You can use some custom code in DFFS (in the Custom JS tab) to move the tabrow up over the “contentBox” like this:
setTimeout(function(){
$("#tabWrapper").css("margin-left",$("#contentBox").css("margin-left")).appendTo($("#ribbonBox"));
},1000);
$(".tabBase").click(function(){
$("#tabWrapper").insertBefore($(".dffsTabRow"));
spjs.dffs.resizeDlg();
setTimeout(function(){
$("#tabWrapper").css("margin-left",$("#contentBox").css("margin-left")).appendTo($("#ribbonBox"));
},250);
});
Please note that this method is not perfect, but it gives you an idea of what can be done with some custom code.
I’m sure there are other methods also so everyone feel free to post other methods.
Alexander