I am feeling a bit dense here... I am not sure how setting a cookie value to change skins is supposed to work. How does DNN know which skin to use?
If I have 10 skins with different names on my site, just providing a
number (e.g., 0, 1, 2) does not seem to be enough info to indicate the
correct skin. Is the skin supposed to have a specific name with a
numeric value appended to the end?
And please let me know if there is a better way to change font sizes other than switching skins. (FYI: The Speerio site is of little use--I get an error every time I try to download their Skinergy code.)
Thanks in advance for your wisdom!
Code copied from DNN site:
[script removed]
function setSkinCookie(name, value, expires, path, domain, secure) {
var curCookie = name + "=" + escape(value) +
((expires) ? "; expires=" + expires.toGMTString() : "") +
((path) ? "; path=" + path : "") +
((domain) ? "; domain=" + domain : "") +
((secure) ? "; secure" : "");
document.cookie = curCookie;
}
[script removed]
[script removed]
function sizeText(size)
{
setSkinCookie("DotNetNuke_Skin_Text_Size", size, new Date("December 31, 2010 23:59:59"),"/");
location.reload();
}
[script removed]


