AVANT TOUTES ACTIONS :
- Dans Design, vérifiez que vous avez bien sélectionné le modèle BLOGGY
- 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 LE FOND BLEU FONCE DANS L'ENTETE
La ligne existe déjà
#top { padding:5px;
background: url(http://fdata.over-blog.com/99/00/00/01/templates/103/default/article/common/pics/top.png) repeat-x scroll top
left; color:#FFF;border-bottom: 1px solid gray; margin-bottom: 10px; }
Vous modifiez ce qui est en rouge
#top { padding:5px;
background:none; color:#FFF;border-bottom: 1px solid gray; margin-bottom: 10px; }
POUR ENLEVER LE FOND BLEU FONCE DANS LE PIED DE PAGE
La ligne existe déjà
#footer { clear:both;margin-top:15px padding:10px;
background:
url(http://fdata.over-blog.com/99/00/00/01/templates/103/default/article/common/pics/top.png) repeat-x scroll bottom left; color:#FFF; border-bottom: 1px solid gray; }
Vous modifiez ce qui est en rouge
#footer { clear:both;margin-top:15px padding:10px;
background: none; color:#FFF; border-bottom: 1px solid gray; }
POUR ENLEVER LA COULEUR DE FOND DANS LES COMMENTAIRES ET LES REPONSES
La ligne existe déjà
.commentMessage { padding:5px; border:1px dotted #999999;
background:#F8F8F8; margin:0px;}
Vous modifiez ce qui est en rouge
.commentMessage { padding:5px; border:1px dotted #999999;
background:none; margin:0px;}
POUR ENLEVER LE FOND GRIS DANS LES TITRES DE MODULE
Les lignes existent déjà
.box-titre {
background:#F90; margin:0px; padding:0px;}
.box-titre h2{
background:#677787; margin:0px;margin-left:20px; padding:0px; color:#FFF; font-weight:bold;}
Vous modifiez ce qui est en rouge
.box-titre {
background:none; margin:0px; padding:0px;}
.box-titre h2{
background:none; margin:0px;margin-left:20px; padding:0px; color:#FFF; font-weight:bold;}
Commentaires