Je crois peut-être que j'ai une solution : avec Google Chrome, tu peux consulter le code source de la page que tu consultes, ce qui te permets de modifier, si tu te connais un peu en html, de mofidier un peu l'affichage de la page. Perso, je m'amuses à modifier certains éléments de ce forum que je trouve gênants (bloquage de certaines images, modification de la police, etc...) et bien sûr sans endommager le site que je consulte. Par exemple, la je consulte le thème subsilver de ce site phbb (800 lignes de code ^^):
► Afficher le texte
Code : Tout sélectionner
/* phpBB 3.0 Style Sheet
--------------------------------------------------------------
Style name: subsilver2
Based on style: subSilver (the default phpBB 2 style)
Original author: subBlue ( http://www.subBlue.com/ )
Modified by: psoTFX and the phpBB team ( http://www.phpbb.com )
This is an alternative style for phpBB3 for those wishing to stay with
the familiar subSilver style of phpBB version 2.x
Copyright 2006 phpBB Group ( http://www.phpbb.com/ )
--------------------------------------------------------------
*/
/* Layout
------------ */
* {
/* Reset browsers default margin, padding and font sizes */
margin: 0;
padding: 0;
}
html {
font-size: 100%;
}
body {
/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
color: #323D4F;
background-color: #DCE1E5;
background-attachment: fixed;
background-image: url('styles/Sniper_Blue/theme/images/bg.gif');
font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
margin: 0;
}
#wrapheader {
margin: 0;
min-height: 120px;
height: auto !important;
height: 130px;
background-image: url('styles/Sniper_Blue/theme/images/bg_header.gif');
background-repeat: repeat-x;
/* padding: 0 25px 15px 25px;*/
padding: 0;
}
#wrapcentre {
margin: 4px 20px 0 20px;
}
#wrapfooter {
text-align: center;
clear: both;
}
#wrapnav {
width: 100%;
margin: 0;
background-color: #ECECEC;
border-width: 1px;
border-style: solid;
border-color: #A9B8C2;
}
#logodesc {
margin-bottom: 4px;
padding: 5px 20px;
}
#menubar {
color: white;
margin: 0 20px;
}
#timebar {
color: #FFFFFF;
position: relative;
margin-top: 10px;
margin-left: 5px;
display: block;
float: left;
text-align: left;
white-space: nowrap; /* For Opera */
}
#datebar {
margin: 10px 20px 0 20px;
etc, etc...
D'ailleurs, j'ai trouvé une commande qui permet de stopper le script html...
Ça t'intéresse ? Voila :