Bonjour,

j'ai un souci lorsqu'il y a un retour chariot sur la 1ère ligne d'un titre :
cela décale le texte d'en dessous (cf copie d'écran)

On voit sans doute mieux le problème ici avec firebug

Mais je suis une bille en CSS et je n'arrive pas à trouver ce qu'il faudrait faire...

Actuellement il y a ce code :
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
.browseProductContainer {
	width:100%;
	padding: 3px 3px 3px 3px;
	vertical-align: top;
}
 
.browseProductTitle {
	font-size:125%;
	padding: 3px;
	margin-top: 13px;
	width: 85%;
	float: left;
}
.browseProductTitleAdd {
	font-size:80%;
}
.browseProductImageContainer {
	float: left;
	width: 90px;
	margin: 3px;
	padding-top:5px;
	padding-right: 5px;
 
}
.browseProductDetailsContainer {
	float: left;
	width: 70%;
}
.browseProductDescription {
	margin-top: 41px;
	margin-left: 75px;
	width:70%;
}
.browsePriceContainer {
	float: right;
	margin: 5px;
	width:15%;
}
.browseAddToCartContainer {
	width:30%;
	text-align:center
}
.browseRatingContainer {
	float: left;
	width:25%;
	margin: 3px;
	white-space: nowrap;
}
Si vous pouviez me filer un coup de main...