Vous allez dans le CSS (comment
?).
Vous créez ces lignes, elles n'existent pas
.divPagination center représente le numéro de la page active
.divPagination center a représente le numéro des autres pages
Si vous désirez effectuer plusieurs changements, vous ne créez qu'une seule fois ces lignes et dans les accolades, vous rajoutez les valeurs voulues.
Vous rajoutez les lignes suivantes :
POUR CHANGER LA TAILLE
.divPagination center {font-size: 20px; }
.divPagination center a {font-size: 20px; }
POUR LE SOULIGNER
.divPagination center {text-decoration:underline ; }
.divPagination center a {text-decoration:underline ;
}
POUR CHANGER SA COULEUR
.divPagination center {color:red;
}
.divPagination center
a {color:red; }
POUR LE METTRE EN ITALIQUE
.divPagination
center {font-style: italic; }
.divPagination center a {font-style: italic; }
POUR LES ALIGNER A DROITE
.divPagination
center { text-align:right; }
.divPagination center
a { text-align:right; }
POUR LE METTRE EN GRAS
.divPagination center{font-weight:bold;}
.divPagination center a {font-weight:bold;}
POUR CHANGER LA POLICE
.divPagination center {font-family: Comic Sans MS;}
.divPagination center a {font-family: Comic Sans MS;}
Commentaires