Bonjour
Finalement, j'ai réussi à avancer beaucoup avec mon site internet, et désormais la seule chose qui me reste à faire est mon fichier CSS pour mettre mon site réellement en ligne - mais je bloque à cette étape. J'aimerais donc vous demander de nouveau votre aide.
J'ai déjà mon fichier CSS, mais j'imagine que j'ai fait une erreur quelque part car ça ne fonctionne pas du tout lorsque je le teste sur mon site. C'est ce que ça donne en ce moment: http://navinames.skxawng.lu
Sur tous mes fichiers HTML j'ai mis <LINK href="http://navinames.skxawng.lu/styles.css" rel="stylesheet" type="text/css"> entre <head> et </head>.
Voici mon fichier CSS terminé:
body {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 12px;
color: #000000;
background-color: #F9F9F9;
}
*
p {
width: 80%;
}
*
li {
list-style-type: none;
line-height: 150%;
list-style-image: url(NNLayout.jpg);
}
*
h1 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 18px;
font-weight: bold;
color: #000000;
}
*
h2 {
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
color: #000000;
border-bottom: 1px solid #C6EC8C;
}
*
/**************** Pseudo classes ****************/
*
a:link {
color: #00CC00;
text-decoration: underline;
font-weight: bold;
}
*
li :link {
color: #00CC00;
text-decoration: none;
font-weight: bold;
}
*
a:visited {
color: #00CC00;
text-decoration: underline;
font-weight: bold;
}
*
li a:visited {
color: #00CC00;
text-decoration: none;
font-weight: bold;
}
*
a:hover {
color: rgb(0, 96, 255);
padding-bottom: 5px;
font-weight: bold;
text-decoration: underline;
}
*
li a:hover {
display: block;
color: rgb(0, 96, 255);
padding-bottom: 5px;
font-weight: bold;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #C6EC8C;
}
*
a:active {
color: rgb(255, 0, 102);
font-weight: bold;
}
*
/************************* ID's *************************/
*
#navigation {
position: absolute;
width: 210px;
height: 600px;
margin: 0;
margin-top: 50px;
border-right: 5px solid #FF6600;
font-weight: normal;
}
*
#centerDoc {
position: absolute;
padding: 0 0 20px 0; /*top right bottom left*/
margin-top: 50px;
margin-left: 235px;
}
Merci beaucoup d'avance