28172 sujets

CSS et mise en forme, CSS3

Ça vient de me revenir, ce que tu vois c'est le soulignement par défaut des liens. Il faut que tu appliques un text-decoration: none aux liens de ta liste.

PS : On se connait ?
non, on ne se connait pas..mais j' aime bien m' adresser au personne directement Smiley smile

J' ai ajouté text-decoration:none; dans mon css, mais ca n' as pas l' air de marché..mais comme je suis newbi, j' ai peut être fait une erreur de placement?

body {
font-family: Arial, "Times New Roman",
Times, serif;
color: purple;
text-decoration:none;
background-image: url(images/bg-grad.jpg);
background-color: #71A8FE;
background-origin: padding-box;
background-position: 0 0;
background-repeat: repeat-x;
background-size: auto auto;
background-attachment: scroll;
background-clip: border-box;
h1 {
font-family: Helvetica, Geneva, Arial,
SunSans-Regular, sans-serif }
address {
margin-top: 1em;
padding-top: 1em;
border-top: thin dotted }
Salut,

Dans ta page HTML tu as:

<style type="text/css">
BODY {
    margin-top:0; margin-left:0; margin-right:0;
}
.lien {
    position: relative; top: -5px; color:#FFFFFF; font-size: 12pt; font-family: Arial;  font-weight: bold; letter-spacing: -1pt; text-decoration: none;
}
.divise {
    position: relative; top: -3px; color: #C0C0C0; background: #329CD3; font-size: 18pt;
}
</style>


dans cette section ajoute:

a {
   text-decoration : none;
}


tout simplement