Utilisateur:Dr Brains/FixSidebar.js

Dans le monde d'aujourd'hui, Utilisateur:Dr Brains/FixSidebar.js est devenu un sujet d'intérêt et de débat généralisé. Depuis son émergence, Utilisateur:Dr Brains/FixSidebar.js a attiré l'attention des experts et des fans, générant des opinions et des positions diverses. Son impact s'est fait sentir dans de multiples aspects de la société, depuis la sphère politique jusqu'à la sphère culturelle, et sa pertinence continue d'évoluer constamment. Dans cet article, nous explorerons les différents aspects de Utilisateur:Dr Brains/FixSidebar.js, son histoire, son influence et sa projection dans le futur, dans le but de bien comprendre ce phénomène et son impact aujourd'hui.
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");
        //        FavUl.setAttribute("style", "height: 10em;overflow: scroll;");
        //}   
        Langtabs = document.getElementById("p-lang");       
        if(Langtabs){
                LangUl = Langtabs.getElementsByTagName("ul");
                LangUl.setAttribute("style", "height: 10em;overflow: auto;");
        } 
}

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


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