Coucou !!
Voilà. Je suis en train de faire le CSS de mon forum mais seulement j'ai un code qui ne marche pas. Et je comprend pas pourquoi
C'est le "text-align: center"
Voilà code entier. J'aimerai que les liens s'alignent sur la barre de navigation et pour les liens de sous forums.
- Code:
-
/*CURSEUR EN CROIX SUR LIEN*/
a:hover { cursor:crosshair; }
/*SOULIGNEMENT DES LIENS DÉSACTIVES*/
a:hover {
text-decoration: none !important;
}
a{
text-decoration: none !important;
}
/*SOULIGNEMENT EN POINTILLES*/
u {
text-decoration: none;
border-bottom: 1px #000000 dotted;
}
/*DÉCORATION DES TITRES*/
.titre{
font-family:Lucida Console;
border-bottom: 2px solid #005157;
color:#005157;
text-align: center;
letter-spacing: 1px;
font-variant: small-caps;}
/*IMAGE DANS CADRE DE CITATION*/
.quote {
background-image: url('http://img10.hostingpics.net/pics/547932Image_citation.png') !important;
background-repeat: no-repeat !important;
background-position: right bottom !important;
padding-left: 20px;
border-style: solid ;
border-color: #FF0000}
/*ARRONDI DES ZONES DE TEXTES*/
textarea, .textarea.post, input.post {
-moz-border-radius:10px;
}
/*BANNIÈRE POSITION NON RÉPÉTITION*/
body {
background-repeat: no-repeat;
background-position: top center;
}
/*BARRE DE NAVIGATION*/
a.mainmenu {
color: #ffffff;
background-color: #1d1e1e;
-moz-border-radius-topleft:7px;
-moz-border-radius-topright:7px;
-moz-border-radius-bottomleft:7px;
-moz-border-radius-bottomright:7px;
border-left: 5px solid #30d2c2;
border-right: 5px solid #30d2c2;
text-align: right;
font-variant: small-caps;
text-shadow: 1px 1px 1px #30d2c2;}
a.mainmenu:hover{
color: #ffffff;
background-color: #1d1e1e;
-moz-border-radius-topleft:7px;
-moz-border-radius-topright:7px;
-moz-border-radius-bottomleft:7px;
-moz-border-radius-bottomright:7px;
border-left: 5px solid #9e156a;
border-right: 5px solid #9e156a;
text-shadow: 2px 2px 2px #d94c97;
font-variant: small-caps;
text-align: right;}
/*LIENS DE FORUM*/
a.forumlink {
color: #ffffff;
background-color: #1d1e1e;
-moz-border-radius-topleft:7px;
-moz-border-radius-topright:7px;
-moz-border-radius-bottomleft:7px;
-moz-border-radius-bottomright:7px;
border-left: 5px solid #30d2c2;
border-right: 5px solid #30d2c2;
font-variant: small-caps;
text-shadow: 1px 1px 1px #30d2c2;
display:block;}
a.forumlink:hover {
color: #ffffff;
background-color: #1d1e1e;
-moz-border-radius-topleft:7px;
-moz-border-radius-topright:7px;
-moz-border-radius-bottomleft:7px;
-moz-border-radius-bottomright:7px;
border-left: 5px solid #9e156a;
border-right: 5px solid #9e156a;
text-shadow: 2px 2px 2px #d94c97;
font-variant: small-caps;
display:block;}
Merci à celui qui me répondra !