Lundi 31 mars 2008

AVANT TOUTES ACTIONS :
- Dans Design, vérifiez que vous avez bien sélectionné le modèle BLUE VELVET
- En haut du CSS, vérifiez que la case "Je souhaite modifier et appliquer la feuille de style à mon blog" est bien cochée.
Si vous êtes en mode normal, vous faîtes ces modifications dans le CSS Global Mon Style
Si vous êtes en mode avancé, vous faîtes ces modifications dans tous les CSS Mon Style
POUR ENLEVER LA COULEUR DE FOND BLEUE DANS LES MARGES EXTERIEURES
La ligne existe déjà
body {margin:0px; padding:0px; background-color:#3C6FAC; font-family: Verdana, Helvetica, Arial, sans-serif; font-size:x-small;}
vous modifiez ce qui est en bleu
body {margin:0px; padding:0px; background:none; font-family: Verdana, Helvetica, Arial, sans-serif; font-size:x-small;}
POUR ENLEVER LE FOND VERT DANS L'ENTETE
La ligne existe déjà
#header{background-color:#92AF6D; margin-bottom:10px;}
Vous modifiez ce qui est en rouge
#header{background:none; margin-bottom:10px;}
POUR ENLEVER LE FOND VERT DANS LE PIED DE PAGE
La ligne existe déjà
#footer {margin-top:10px; position:relative; color: #c97d02; background:transparent; border:0px none; background:#92AF6D; padding:3px;}
Vous modifiez ce qui est en rouge
#footer {margin-top:10px; position:relative; color: #c97d02; background:transparent; border:0px none; background:none; padding:3px;}
POUR ENLEVER LES FONDS BLEUS CLAIRS DANS LES MODULES
La ligne existe déjà
.box {background-color:#B7D1ED; margin:0px; padding:0px; border-bottom:1px solid #3D82AD;}
Vous modifiez ce qui est en bleu
.box {background:none; margin:0px; padding:0px; border-bottom:1px solid #3D82AD;}
POUR ENLEVER LE FOND BLEU DANS LES ARTICLES
La ligne existe déjà
.article {margin-top:0px; padding:0px; margin-bottom:5px; background-color:#79A6D4;}
Vous modifiez ce qui est en rouge
.article {margin-top:0px; padding:0px; margin-bottom:5px; background:none;}
ENLEVER LE FOND BLEU DANS LA COLONNE CENTRALE
La ligne existe déjà
#cl_1_1 {background-color:#79A6D4; margin:0 5px; padding: 0;}
Vous modifiez ce qui est en bleu
#cl_1_1 {background:none; margin:0 5px; padding: 0;}
POUR ENLEVER LA COULEUR VERTE DANS LES OPTIONS SOUS LES ARTICLES
Vous rajoutez la ligne
.afterArticle {background:none;}
POUR ENLEVER LA COULEUR DE FOND DANS LES COMMENTAIRES
La ligne existe déjà
.commentMessage {padding:5px; border:1px dotted #000; margin:0px; background-color:#F5E39E;}
Vous modifiez ce qui est en rouge
.commentMessage {padding:5px; border:1px dotted #000; margin:0px; background:none;}

Commentaires