Vous devez vous rendre dans votre (ou vos) CSS : Design > Mode CSS
Toutes ces lignes sont à rajouter dans le CSS, elles n'y figurent pas.
Les articles impairs sont désignés par
.article_evenLes articles pairs sont désignés par
.article_odd
MODIFICATION DES POLICES
L'article en entier
.article_even .article {text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
.article_even .article a{text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
.article_odd .article {text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}La partie avant l'article
.article_odd .article a{text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
.article_even .beforeArticle {text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
.article_odd .beforeArticle {text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}Le titre
.article_even .divTitreArticle {text-align:center;}
.article_even .divTitreArticle .titreArticle{color:#000066;text-decoration:underline;text-decoration:none; font-style: italic}
.article_even .titreArticle {font-weight : bold ;font-weight : normal;font-size:130%; }
.article_odd .divTitreArticle {text-align:center;}La partie après l'article
.article_odd .divTitreArticle .titreArticle{color:#000066;text-decoration:underline;text-decoration:none; font-style: italic}
.article_odd .titreArticle {font-weight : bold ;font-weight : normal;font-size:130%; }
.article_even .afterArticle {text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
.article_even .afterArticle a{text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
.article_odd .afterArticle {text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}Vous effacez ou modifiez ce dont vous ne voulez pas, sachant que
.article_odd .afterArticle a{text-align : center ; color : red ; font-weight : bold ; text-decoration : underline ; font-size : 20px ; font-style : italic ; font-family : Comic Sans MS ;}
text-align : center centre le texteMODIFICATION DES PUCES
text-align : left positionne le texte à gauche
text-align : right positionne le texte à droite
text-align : justify justifie le texte à droite
color : red modifie la couleur de la police, voir les codes couleurs
font-weight : bold transforme la police en gras
font-weight : normal transforme la police en normal
text-decoration : underline souligne le texte
text-decoration : none enlève le soulignement
font-size : 20px fixe la taille de la police
font-style : italic transforme la police en italique
font-family : Comic Sans MS sélectionne la police
.article_even .article li {list-style:none; list-style:disc;list-style:square;list-style:circle;list-style-image : url(adresse de votre puce);}
.article_odd .article li {list-style:none; list-style:disc;list-style:square;list-style:circle;list-style-image : url(adresse de votre puce);}Vous effacez ce dont vous ne voulez pas, sachant que
list-style : none signifie aucune puceMODIFICATION DES FONDS
list-style : disc représente une puce ronde pleine
list-style : square représente un carré plein
list-style : circle représente une puce ronde vide
list-style-image : url(adresse de votre puce) lorsqu'une image remplace la puce. Vous devez la choisir de très petite taille :10*10px maximum
Un fond dans l'article en entier
.article_even .article {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}
.article_odd {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}Un fond dans la partie avant l'article
.article_even .beforeArticle {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}
.article_odd .beforeArticle {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}Un fond dans le titre
.article_even .divTitreArticle h2 {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}
.article_odd .divTitreArticle h2 {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}Un fond dans le contenu de l'article
.article_even .contenuArticle {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}
.article_odd .contenuArticle {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}Un fond dans la partie après l'article
.article_even .afterArticle {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}
.article_odd .afterArticle {background-color:red;background-image:url(adresse de la texture);background-image:url(adresse de l'image);background-repeat:no-repeat;background-position:center;}Vous effacez ce qui ne vous convient pas, sachant que
background-color : red met une couleur dans le fond, voir les codes couleursPour en savoir plus sur les background
background-image : url(adresse de la texture) met une texture qui se répète dans le fond
background-image : url(adresse de l'image);background-repeat:no-repeat; background-position:center met une image centrée qui ne se répète pas
AJOUT D'ENCADREMENTS
Pour encadrer tout l'article
.article_even .article {border:solid 1px #D8D7D7}
.article_odd .article {border:solid 1px #D8D7D7}Pour encadrer la zone avant l'article
.article_even .beforeArticle {border:solid 1px #D8D7D7}
.article_odd .beforeArticle {border:solid 1px #D8D7D7}Pour encadrer le titre
.article_even .divTitreArticle h2 {border:solid 1px #D8D7D7}
.article_odd .divTitreArticle h2 {border:solid 1px #D8D7D7}Pour encadrer le contenu de l'article
.article_even .contenuArticle {border:solid 1px #D8D7D7}
.article_odd .contenuArticle {border:solid 1px #D8D7D7}Pour encadrer la zone après l'article
.article_even .afterArticle {border:solid 1px #D8D7D7}
.article_odd .afterArticle {border:solid 1px #D8D7D7}Pour encadrer la zone de navigation
.article_even .article_navigation {border:solid 1px #D8D7D7}
.article_odd .article_navigation {border:solid 1px #D8D7D7}Pour en savoir plus sur les bordures : créer vos encadrements
Aucun commentaire:
Enregistrer un commentaire
1/ Choisissez Nom/URL comme profil pour poster, si vous hésitez
2/ Si vous désirez une aide personnalisée, pensez à laisser l'adresse de votre blog, ce qui me permettra de tester.
3/ Vous pouvez vous abonner par email pour suivre les réponses de cet article (lien sous la zone de rédaction du commentaire)