Bit of hack but I wanted the best of both worlds. Stick a bit of JavaScript on the Skin .ascx page (e.g. /skins/Dark/Dark.ascx);
e.g.
$(document).ready(function () {
$('a').each(function () {
});
e.g.
$(document).ready(function () {
$('a').each(function () {
if ($(this).attr('href') != undefined && $(this).attr('href') != "") {
var url = $(this).attr('href').replace("SkinSrc=/DesktopModules/NB_Store/Skins/Dark/Dark", "SkinSrc=%2fDesktopModules%2fNB_Store%2fSkins%2fDark%2fDark");
$(this).attr('href', url);
}
});});