_ _    _ _____  ___   __                       
 __      _(_) | _(_)___ / ( _ ) / /_   ___ ___  _ __ ___  
 \ \ /\ / / | |/ / | |_ \ / _ \| '_ \ / __/ _ \| '_ ` _ \ 
  \ V  V /| |   <| |___) | (_) | (_) | (_| (_) | | | | | |
   \_/\_/ |_|_|\_\_|____/ \___/ \___(_)___\___/|_| |_| |_|

Utilisateur:Dr Brains/FixSidebar.js

Dans le monde d'aujourd'hui, Utilisateur:Dr Brains/FixSidebar.js est devenu un sujet d'une grande pertinence et d'un grand intérêt pour un grand nombre de personnes. Son impact se manifeste dans différents aspects de la vie quotidienne, de la technologie à la culture et à la société. Alors que Utilisateur:Dr Brains/FixSidebar.js continue d'évoluer et de prendre de nouvelles formes, il est crucial d'analyser son influence et de comprendre son rôle dans notre monde en constante évolution. Dans cet article, nous explorerons différents aspects de Utilisateur:Dr Brains/FixSidebar.js, de ses origines à son impact actuel, dans le but de fournir une vision globale de ce phénomène et de sa pertinence 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);
}


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