AVANT TOUTES ACTIONS :
- Dans Design, vérifiez que vous avez bien sélectionné le modèle CITY LIGHTS
- 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 GRISE DANS LES MARGES EXTERIEURES ET LE CORPS
La ligne existe déjà
body{margin:0px; padding:0px;
background-color:#74858C; 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 BEIGE DANS L'ENTETE
La ligne existe déjà
#header{ text-align:center; border:1px solid #666; margin-bottom:5px;
background-color:#FDEBC1; border-bottom: 1px solid gray;}
Vous modifiez ce qui est en rouge
#header{ text-align:center; border:1px solid #666; margin-bottom:5px;
background:none; border-bottom: 1px solid gray;}
POUR ENLEVER L'ENCADREMENT DANS L'ENTETE
Toujours dan cette ligne
#header{ text-align:center; border:1px solid #666; margin-bottom:5px; background-color:#FDEBC1; border-bottom:
1px solid gray;}
Vous modifiez ce qui est en rouge
#header{ text-align:center; border:1px solid #666; margin-bottom:5px; background-color:#FDEBC1; border-bottom:
0px solid gray;}
POUR ENLEVER LE FOND GRIS DANS LES TITRES DES MODULES
Les lignes existent déjà
.box h2 {
background-color:#999; color:#FFF; margin-left:10px; margin-right:10px; margin-top:0px;
margin-bottom:0px; }
.box-titre { position:relative; margin-right:10px; margin-left:10px;
background-color:#CCCC99; padding:0px;
text-align:center; }
Vous modifiez ce qui est en rouge
.box h2 {
background:none; color:#FFF; margin-left:10px; margin-right:10px; margin-top:0px;
margin-bottom:0px; }
.box-titre { position:relative; margin-right:10px; margin-left:10px;
background:none; padding:0px;
text-align:center; }
POUR ENLEVER LA COULEUR DE FOND DANS LA DATE
La ligne existe déjà
.beforeArticle {padding:0px 0px 5px 0px; margin:0px; border-bottom:1px solid #808080; width:100%;
background-color: #C9E3ED;}
Vous modifiez ce qui est en rouge
.beforeArticle {padding:0px 0px 5px 0px; margin:0px; border-bottom:1px solid #808080; width:100%;
background:none;}
POUR ENLEVER LE FOND GRIS DANS L'ARTICLE
La ligne existe déjà
.article { margin-top:0px; padding:0px;
background-color:#F9F8FA; border:1px solid #666; margin-bottom:5px;}
Vous modifiez ce qui est en rouge
.article { margin-top:0px; padding:0px;
background:none; border:1px solid #666; margin-bottom:5px;}
Commentaires