NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name velovert full wide // @namespace velovert_full_wide // @version 1.02 // @description affiche en pleine largeur le site // @include http://www.velovert.com* // @include https://www.velovert.com* // @copyleft 2014+, lolo888 // @author lolo888 // ==/UserScript== document.body.style.setProperty('background', '#F9F9F9', 'important'); var elmModify = document.getElementById('wrapper'); if (elmModify) { elmModify.parentNode.removeChild(elmModify); } var elmModify = document.getElementById("site"); if (elmModify) { elmModify.style.setProperty("margin", "0px auto 0px auto", "important"); elmModify.style.setProperty("width", "100%", "important"); } var elmModify = document.getElementById("navigation"); if (elmModify) { elmModify.style.setProperty("position", "inherit", "important"); } var elmModify = document.getElementById('div_banniere_pub'); if (elmModify) { elmModify.parentNode.removeChild(elmModify); }