Re: Javascript Get Toolbar Height

  •  02-06-2009, 5:57 PM

    Re: Javascript Get Toolbar Height

    Hi,
    Thanks for the response.. I couldnt get that to work, however I using that id I was able to sucessfully separate the toolbar from the editable area (a better solution to my problem) without delving into the code..
     
    var toolbar1=document.getElementById('CE_Editor1_ID_ToolBar');
    toolbar1.style.display="block";
    toolbar1.style.position="fixed";
    toolbar1.style.left=0;
    toolbar1.style.top=0;
     
    Using a strict mode doctype this works in I.E. 7, quirks makes it work in ff
    Thought this might be of use to some others :)
     
    Rob
View Complete Thread