Bonjour,
Voila je dois reprendre l'entretien d'un site Web,
Mais il y a un petit probleme et je ne trouve pas d'ou il vien.
Voila Lorsque que je veux inserer une balise <li> (puce) avec dreamwever, il la met pour tout un paragraphe au lieu de la mettre juste pour la ligne selectioné.
J'ai pu me rendre compte que le probleme venait de la feuille de style utilisé, mais je n'arrive pas a voire a quel niveau.


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
body
{
	margin-top: 10px;
	text-align: center;
	background: #808080;
	font-family: Trebuchet MS;
}
 
 
a{
color: black;
text-decoration: none;
}
 
a:hover{
color: #F55507;
}
 
 
.conteneur
{
	position: relative;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 730px;
 
}
 
 
.menu
{
 
	float: left;
	width: 198px;
	height: 474px;
 
	background-image: url('images/squelette_06.jpg');
 
}
 
 
.contenu
{
	position: relative;
	width: 450px;
	margin-top: 40px;
	margin-left: 230px;
 
	font-size: 11px;
	text-align: justify;
 
}
 
table, td, tr, input{
		font-family: Trebuchet MS;
		font-size: 11px;
 
}
 
.contenu .titre1
{
	padding-left: 25px ;
	line-height: 25px ;
	font-size: 18px ;
	background: url('images/carreorange.jpg') no-repeat left bottom ;
}
 
 
.contenu .titre2
{
	margin-left: 10px;
	padding-left: 25px ;
	line-height: 25px ;
	font-size: 11px ;
	font-weight: bold;
	background: url('images/carregris.jpg') no-repeat left bottom ;
}
 
 
 
.menu .cont
{
	margin-left: 11px;
	margin-top: 93px;
 
}
.menu .titre1
{
	padding-left: 15px ;
	line-height: 25px ;
	font-size: 11px ;
	font-weight: bold;
	background: url('images/carreorangeptit.gif') no-repeat left bottom ;
}
 
.menu 
{
	margin-top: 0;
	padding-top: 0;
	margin-left: 10px;
	padding-left: 0px;
 
	list-style-type: none;
	line-height: 12px ;
	font-size: 11px ;
	font-weight: none;
 
}
 
 
.foot_logo{
 
position: relative;
margin-left: 230px;
 
}
 
 
.footer{
	font-size: 10px ;
	margin-top: -10px;
	text-align: left;
 
}
 
<!-- 
 
.TestClasse{
margin: 0;
padding: 0;
list-style-type: none;
}
 
#menu {
position: absolute;
top: 123;
left: 70;
z-index:100;
width: 100%;
 
}
 
#menu dl {
float: left;
width: 8em;
 
}
 
#menu dt {
cursor: pointer;
text-align: center;
border: 0px;
background: #fff;
height: 39px;
}
 
 
#menu dd {
display: none;
border: 1px solid gray;
 
}
 
#menu li {
text-align: center;
background: #fff;
}
 
#menu li a, #menu dt a {
color: #000;
text-decoration: none;
height: 100%;
border: 0 none;
}
 
#menu li a:hover, #menu li a:focus, #menu dt a:hover, #menu dt a:focus {
color:  #F55507;
 
}
 
 
.cadenas
{
float: right;
 
}
Quelqu'un pourais t'il me metter sur la voix sachant que je debute sur le CSS.
Merci!!!!