Applogies I have just got back to the machine with the problem and realise this hasnt been reported properly the error reads
Runtime Error
Line 46
Error:'ScrollTop' is null or not an object
It claims to be an unhandled exception in dnncore.js
function __dnn_bodyscroll()
{
var oF=document.forms[0];
if (__dnn_ClientAPIEnabled() && __dnn_m_bPageLoaded)
oF.ScrollTop.value=document.documentElement.scrollTop ? document.documentElement.scrollTop : dnn.dom.getByTagName("body")[0].scrollTop;
}
i have changed it to
function __dnn_bodyscroll()
{
var oF=document.forms[0];
if (__dnn_ClientAPIEnabled() && __dnn_m_bPageLoaded)
if( oF.ScrollTop != null)
oF.ScrollTop.value=document.documentElement.scrollTop ? document.documentElement.scrollTop : dnn.dom.getByTagName("body")[0].scrollTop;
}
which seems to stop the error but hardly a quality solution - unless it is the problem