|
Sommaire
|
Vous allez dans le CSS (comment?), vous créez un nouveau paragraphe
:
/*--------------------Texte libre---------------------------- */
#ln_1 #cl_1_2 .text .box-titre h2 span représente le titre du module droit Texte Libre. Une fois que vous l'avez crée, vous
rajoutez seulement ce qui est entre les parenthèses.
#ln_1 #cl_1_0 .text .box-titre h2 span représente le titre du module gauche Texte Libre. Une fois que vous l'avez crée, vous
rajoutez seulement ce qui est entre les parenthèses.
Pour centrer le titre, vous rajoutez
#ln_1 #cl_1_2 .text .box-titre h2 span {text-align : center ;
}
#ln_1 #cl_1_0 .text .box-titre h2 span {text-align : center ;}
Pour changer la couleur, vous rajoutez
#ln_1 #cl_1_2 .text .box-titre h2 span {color:red;
}
#ln_1 #cl_1_0 .text .box-titre h2 span {color:red; }
Pour le mettre en gras, vous rajoutez
Les titres des modules sont en gras a priori, c'est seulement dans le cas où vous auriez enlevé le gras
#ln_1 #cl_1_2 .text .box-titre h2 span
{font-weight:bold; }
#ln_1 #cl_1_0 .text .box-titre h2 span {font-weight:bold; }
Pour enlever le gras
#ln_1 #cl_1_2 .text .box-titre h2 span
{font-weight:normal; }
#ln_1 #cl_1_0 .text .box-titre h2 span {font-weight:normal;}
Pour le souligner
#ln_1 #cl_1_2 .text .box-titre h2
span {text-decoration:underline; }
#ln_1 #cl_1_0 .text .box-titre h2 span {text-decoration:underline; }
Pour enlever le soulignement
#ln_1 #cl_1_2 .text .box-titre h2
span {text-decoration:none; }
#ln_1 #cl_1_0 .text .box-titre h2 span {text-decoration:none; }
Pour changer sa taille
#ln_1 #cl_1_2 .text .box-titre h2
span {font-size: 20px; }
#ln_1 #cl_1_0 .text .box-titre h2 span {font-size: 20px; }
Pour le mettre en italique
#ln_1 #cl_1_2 .text .box-titre h2
span {font-style:italic; }
#ln_1 #cl_1_0 .text .box-titre h2 span {font-style:italic; }
Pour le changer la police
#ln_1 #cl_1_2 .text .box-titre
h2 span {font-family: Comic Sans MS ;}
#ln_1 #cl_1_0 .text .box-titre h2 span {font-family: Comic Sans MS ;}
3
Retour à la page d'accueil
Commentaires