Note : après avoir enregistré la page, vous devrez forcer le rechargement complet du cache de votre navigateur pour voir les changements.

Mozilla / Firefox / Konqueror / Safari : maintenez la touche Majuscule (Shift) en cliquant sur le bouton Actualiser (Reload) ou pressez Maj-Ctrl-R (Cmd-R sur Apple Mac) ;

Chrome / Internet Explorer / Opera : maintenez la touche Ctrl en cliquant sur le bouton Actualiser ou pressez Ctrl-F5.
function FixSideBar() {
        Column = document.getElementById("column-one"); 
        if(!Column)return;
        Column.setAttribute("style", "position: fixed;height: 100%;overflow: hidden;z-index: 2;");
        document.body.setAttribute("style","background-attachment: fixed;");

        content = document.getElementById("column-content");    // Find the main content column 
        footer = document.getElementById("footer");  // Find the footer
        footer.parentNode.removeChild(footer);    // Remove the footer from the global wrapper
        content.appendChild(footer);    // Place footer at the end of the content column; 
        footer.setAttribute("style", "margin-left: 13.6em;border: solid 1px rgb(250, 189, 35);");   

        tabs = document.getElementById("p-cactions");   // Find the top tab list
        tabs.parentNode.removeChild(tabs);    // Remove the tab list from the side column
        content.insertBefore(tabs,content.firstChild);    // Place tab list at the beginning of the content column
        tabs.setAttribute("style", "position: absolute;z-index:100;top:1.2em;");   

        Persotabs = document.getElementById("p-personal");   // Find the top tab list
        Persotabs.parentNode.removeChild(Persotabs);    // Remove the tab list from the side column
        content.insertBefore(Persotabs,content.firstChild);    // Place tab list at the beginning of the content column
        Persotabs.setAttribute("style", "position: absolute;z-index:150;top:0;");   

        //Favtabs = document.getElementById("p-fav");       
        //if(Favtabs){
        //        FavUl = Favtabs.getElementsByTagName("ul")[0];
        //        FavUl.setAttribute("style", "height: 10em;overflow: scroll;");
        //}   
        Langtabs = document.getElementById("p-lang");       
        if(Langtabs){
                LangUl = Langtabs.getElementsByTagName("ul")[0];
                LangUl.setAttribute("style", "height: 10em;overflow: auto;");
        } 
}

if(mw.config.get('skin')=="monobook"){
        $(FixSideBar);
}


//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//
//