Précédent   Forum des professionnels en informatique > Webmasters - Développement Web > HTML / DHTML / XHTML
HTML / DHTML / XHTML Forum sur la programmation HTML / DHTML/ XHTML et la validation W3C. Cours (X)HTML, FAQ (X)HTML
Partagez cette discussion sur d'autres réseaux sociaux : Viadeo Twitter Google Facebook Digg Delicious MySpace Yahoo
Réponse Proposer ce sujet en actualité
 
Outils de la discussion
Publicité
'
Vieux 15/11/2011, 19h18   #1
Invité régulier
 
Homme Yannick
Lycéen
Inscription : novembre 2011
Messages : 43
Détails du profil
Informations personnelles :
Nom : Homme Yannick
Localisation : France, Finistère (Bretagne)

Informations professionnelles :
Activité : Lycéen

Informations forums :
Inscription : novembre 2011
Messages : 43
Points : 9
Points : 9
Par défaut Décalage sur une image

Bonjour à tous,

Je reviens vers vous car j'ai un petit problème.

Je code mon site en PHP et sur mon en tête de toute les pages (fichier en_tete.php) j'ai incérer un logo.

Sur mon Pc le logo est parfaitement bien positionner mais sur certain autre pc, quelque que soit le navigateur internet une artie de mon logo se décale à gauche et passe sous le menu. De fait de la logique de la chose on ne vois plus qu'un bout de mon logo...

Il y a t-il une solution

Voici le bout de code pour l'image :

Code :
</a><img src="Images/logo site.png" width="806" height="120" alt="" />
Merci à vous,

Cordialement
yanniks est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/11/2011, 10h47   #2
Membre chevronné
 
Avatar de Marc3001
 
Homme
Ingénieur développement logiciels
Inscription : février 2008
Messages : 430
Détails du profil
Informations personnelles :
Sexe : Homme
Âge : 28
Localisation : France, Ille et Vilaine (Bretagne)

Informations professionnelles :
Activité : Ingénieur développement logiciels

Informations forums :
Inscription : février 2008
Messages : 430
Points : 682
Points : 682
Ca n'est pas un problème de php mais de HTML/CSS.

Quelle différence y'a t'il entre le navigateur de ton PC et celui sur lequel le site ne s'affiche pas correctement ?
La résolution peut aussi éventuellement jouer...

Donne un peu plus de code parceque là c'est un peu juste pour t'aider.
__________________
Le logiciel, c'est comme le sexe, c'est meilleur quand c'est libre.

Linus Torvalds
Marc3001 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/11/2011, 11h49   #3
Invité régulier
 
Homme Yannick
Lycéen
Inscription : novembre 2011
Messages : 43
Détails du profil
Informations personnelles :
Nom : Homme Yannick
Localisation : France, Finistère (Bretagne)

Informations professionnelles :
Activité : Lycéen

Informations forums :
Inscription : novembre 2011
Messages : 43
Points : 9
Points : 9
La différence c'est l'écran qui est en carré lorsque ça décale et plutot en 16/9 quand ça se décale pas
yanniks est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/11/2011, 13h07   #4
Modérateur
 
Avatar de Vil'Coyote
 
Développeur Web
Inscription : février 2008
Messages : 3 310
Détails du profil
Informations personnelles :
Âge : 31
Localisation : France, Marne (Champagne Ardenne)

Informations professionnelles :
Activité : Développeur Web

Informations forums :
Inscription : février 2008
Messages : 3 310
Points : 4 494
Points : 4 494
Citation:
Envoyé par yanniks Voir le message
La différence c'est l'écran qui est en carré lorsque ça décale et plutot en 16/9 quand ça se décale pas
donc on en revient à a ta conception et ton CSS. il faudrait revoir la manière de positionner tes éléments.

un peux plus de code et surtout en prime le css serait apprécié.
Vil'Coyote est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 16/11/2011, 18h29   #5
Invité régulier
 
Homme Yannick
Lycéen
Inscription : novembre 2011
Messages : 43
Détails du profil
Informations personnelles :
Nom : Homme Yannick
Localisation : France, Finistère (Bretagne)

Informations professionnelles :
Activité : Lycéen

Informations forums :
Inscription : novembre 2011
Messages : 43
Points : 9
Points : 9
Bonjour,

Pas de soucis,

Voici ci-dessous le code de mon CSS
Et par a suite le code de la page index

Code :
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/***********************************************/
/* emx_nav_left.css                            */
/* Use with template Halo_leftNav.html         */
/***********************************************/
 
/***********************************************/
/* HTML tag styles                             */
/***********************************************/
body{
	font-family: Arial,sans-serif;
	color: #333333;
	line-height: 1.166;	
	margin: 0px;
	padding: 0px;
	background: #cccccc url(bg_grad.jpg) fixed;
 
 
}
 
/******* hyperlink and anchor tag styles *******/
 
a:link, a:visited{
	color: #005FA9;
	text-decoration: none;
}
 
a:hover{
	text-decoration: underline;
}
 
/************** header tag styles **************/
 
h1{
 font: bold 120% Arial,sans-serif;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}
 
h2{
 font: bold 114% Arial,sans-serif;
 color: #006699;
 margin: 0px;
 padding: 0px;
}
 
h3{
 font: bold 100% Arial,sans-serif;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}
 
h4{
 font: 100% Arial,sans-serif;
 color: #333333;
 margin: 0px;
 padding: 0px;
}
 
h5{
 font: 100% Arial,sans-serif;
 color: #334d55;
 margin: 0px;
 padding: 0px;
}
 
 
/*************** list tag styles ***************/
 
ul{
 list-style-type: square;
}
 
ul ul{
 list-style-type: disc;
}
 
ul ul ul{
 list-style-type: none;
}
 
/********* form and related tag styles *********/
 
form {
	margin: 0;
	padding: 0;
}
 
label{
 font: bold 1em Arial,sans-serif;
 color: #334d55;
}
 
input{
font-family: Arial,sans-serif;
}
 
/***********************************************/
/* Layout Divs                                 */
/***********************************************/
#pagecell1{
	position:absolute;
	top: 163px;
	left: 0px;
	right: 2%;
	width:95.6%;
	background-color: #ffffff;
	height: 672px;
}
 
#tl {
	position:absolute;
	top: 3px;
	left: -3px;
	margin: 0px;
	padding: 0px;
	z-index: 100;
}
 
#tr {
	position:absolute;
	top: -1px;
	right: -1px;
	margin: 0px;
	padding: 0px;
	z-index: 100;
}
 
#masthead{
	position: absolute;
	top: 36px;
	left: 17px;
	right: 2%;
	width:95.6%;
 
}
 
#pageNav{
	float: left;
	width:200px;
	padding: 0px;
	background-color: #F5f7f7;
	border-right: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	font: small Verdana,sans-serif;
}
 
#content{
	padding: 0px 10px 0px 0px;
	margin:0px 0px 0px 200px;
	border-left: 1px solid #ccd2d2;
 
	}
 
/***********************************************/
/* Component Divs                              */
/***********************************************/
#siteName{
	margin: 0px;
	padding: 16px 0px 8px 0px;
	color: #000000;
	font-weight: normal;
}
 
/************** utility styles *****************/
 
#utility{
	font: 75% Verdana,sans-serif;
	position: absolute;
	top: 16px;
	right: 0px;
	color: #919999;
}
 
#utility a{
	color: #ffffff;
}
 
#utility a:hover{
	text-decoration: underline;
}
 
/************** pageName styles ****************/
 
#pageName{
	padding: 0px 0px 14px 10px;
	margin: 0px;
	border-bottom:1px solid #ccd2d2;
}
 
#pageName h2{
	font: bold 175% Arial,sans-serif;
	color: #000000;
	margin:0px;
	padding: 0px;
}
 
#pageName img{
	position: absolute;
	top: 0px;
	right: 6px;
	padding: 0px;
	margin: 0px;
}
 
/************* globalNav styles ****************/
 
#globalNav{
position: relative;
width: 100%;
min-width: 640px;
height: 32px;
color: #cccccc;
padding: 0px;
margin: 0px;
background-image: url(glbnav_background.gif);
}
 
#globalNav img{
	margin-bottom: -4px;
 
}
 
#gnl {
	position: absolute;
	top: 0px;
	left:-5px;
}
 
#gnr {
	position: absolute;
	top: 1px;
	right:-1px;
}
 
#globalLink{
	position: absolute;
	top: 7px;
	height: 22px;
	min-width: 640px;
	padding: 0px;
	margin: 0px;
	left: 94px;
	z-index: 100;
}
 
 
a.glink, a.glink:visited{
  	font-size: small;
  	color: #000000;
	font-weight: bold;
	margin: 0px;
	padding: 2px 5px 4px 5px;
	border-right: 1px solid #8FB8BC;
}
 
a.glink:hover{
  	background-image: url(glblnav_selected.gif);
	text-decoration: none;
}
 
.skipLinks {display: none;}
 
 
 
/************ subglobalNav styles **************/
 
.subglobalNav{
	position: absolute;
	top: 84px;
	left: 0px;
	/*width: 100%;*/
	min-width: 640px;
	height: 20px;
	padding: 0px 0px 0px 10px;
	visibility: hidden;
	color: #ffffff;
}
 
.subglobalNav a:link, .subglobalNav a:visited {
	font-size: 80%;
	color: #ffffff;
}
 
.subglobalNav a:hover{
	color: #cccccc;
}
 
/*************** search styles *****************/
 
#search{
	position: absolute;
	top: 5px;
	right: 10px;
	z-index: 101;
}
 
#search input{
  font-size: 70%;
  margin: 0px  0px 0px 10px;
 }
 
#search a:link, #search a:visited {
	font-size: 80%;
	font-weight: bold;
 
}
 
#search a:hover{
	margin: 0px;
}
 
 
/************* breadCrumb styles ***************/
 
#breadCrumb{
	padding: 5px 0px 5px 10px;
	font: small Verdana,sans-serif;
	color: #FF6600;
}
 
#breadCrumb a{
	color: #AAAAAA;
}
 
#breadCrumb a:hover{
	color: #005FA9;
	text-decoration: underline;
}
 
 
/************** feature styles *****************/
 
.feature{
	padding: 0px 0px 10px 10px;
	font-size: 80%;
	min-height: 200px;
	height: 200px;
}
html>body .feature {height: auto;}
 
.feature h3{
	font: bold 175% Arial,sans-serif;
	color: #000000;
	padding: 30px 0px 5px 0px;
}
 
.feature img{
	float: left;
	padding: 0px 10px 0px 0px;
}
 
 
/*************** story styles ******************/
 
.story {
	padding: 10px 0px 0px 10px;
	font-size: 80%;
}
 
.story h3{
	font: bold 125% Arial,sans-serif;
	color: #000000;
}
 
.story p {
	padding: 0px 0px 10px 0px;
}
 
.story a.capsule{
	font: bold 1em Arial,sans-serif;
	color: #005FA9;
	display:block;
	padding-bottom: 5px;
}
 
.story a.capsule:hover{
	text-decoration: underline;
}
 
td.storyLeft{
	padding-right: 12px;
}
 
/************** siteInfo styles ****************/
 
#siteInfo{
	clear: both;
	border-top: 1px solid #cccccc;
	font-size: small;
	color: #cccccc;
	padding: 10px 10px 10px 10px;
	margin-top: 0px;
 
}
 
#siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;
}
 
 
/************ sectionLinks styles **************/
 
#sectionLinks{
	margin: 0px;
	padding: 0px;
 
}
 
#sectionLinks h3{
	padding: 10px 0px 2px 10px;
	border-bottom: 1px solid #cccccc;
}
 
#sectionLinks a:link, #sectionLinks a:visited {
	display: block;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #cccccc;
	background-image: url(bg_nav.jpg);
	font-weight: bold;
	padding: 3px 0px 3px 10px;
	color: #21536A;
}
 
#sectionLinks a:hover{
	border-top: 1px solid #cccccc;
	background-color: #DDEEFF;
	background-image: none;
	font-weight: bold;
	text-decoration: none;
}
 
 
/************* relatedLinks styles **************/
 
.relatedLinks{
	margin: 0px;
	padding: 0px 0px 10px 10px;
	border-bottom: 1px solid #cccccc;
}
 
.relatedLinks h3{
	padding: 10px 0px 2px 0px;
}
 
.relatedLinks a{
	display: block; 
}
 
 
/**************** advert styles *****************/
 
#advert{
	padding: 10px;
}
 
#advert img{
	display: block;
}
 
 
/********************* end **********************/

Code :
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- DW6 -->
<head>
<!-- Copyright 2005 Macromedia, Inc. All rights reserved. -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Brest : Accueil </title>
<link rel="stylesheet" href="emx_nav_left.css" type="text/css" />
<script type="text/javascript">
<!--
var time = 3000;
var numofitems = 7;
 
//menu constructor
function menu(allitems,thisitem,startstate){ 
  callname= "gl"+thisitem;
  divname="subglobal"+thisitem;  
  this.numberofmenuitems = allitems;
  this.caller = document.getElementById(callname);
  this.thediv = document.getElementById(divname);
  this.thediv.style.visibility = startstate;
}
 
//menu methods
function ehandler(event,theobj){
  for (var i=1; i<= theobj.numberofmenuitems; i++){
    var shutdiv =eval( "menuitem"+i+".thediv");
    shutdiv.style.visibility="hidden";
  }
  theobj.thediv.style.visibility="visible";
}
 
function closesubnav(event){
  if ((event.clientY <48)||(event.clientY > 107)){
    for (var i=1; i<= numofitems; i++){
      var shutdiv =eval('menuitem'+i+'.thediv');
      shutdiv.style.visibility='hidden';
    }
  }
}
// -->
</script>
<style type="text/css">
<!--
body {
	background-color: #FFFFFF;
}
.Style1 {color: #999999}
.Style4 {
	font-size: 24px;
	color: #808080;
	font-weight: bold;
}
body,td,th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #000000;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.Style5 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.Style8 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; font-weight: bold; }
-->
</style></head>
<body onmousemove="closesubnav(event);">
<div class="skipLinks">skip to: <a href="#content">page content</a> | <a href="#pageNav">links on this page</a> | <a href="#globalNav">site navigation</a> | <a href="#siteInfo">footer (site information)</a> </div>
<!-- end masthead -->
<div id="pagecell1">
  <!--pagecell1-->
  <div class="Style1" id="breadCrumb"> 
    <div align="center" class="Style4"><strong>Brest M&eacute;tropole Oc&eacute;ane </strong></div>
  </div>
  <div id="pageName">    
    <div align="center" class="Style3">
      <marquee behavior=scroll direction="left">
      Bienvenue sur le site internet ; Site version 1 dernière mise à jour le 10/11/11
      </marquee>
 
 
    </div>
  </div>
  <?php include("menu.php"); ?>
  <div id="content">
        <div class="feature"> <img src="Images/logo accueil.png" alt="" width="473" height="414" />
      <h3 align="center">Bienvenue sur notre site !  </h3>
      <p align="center"> La d&eacute;l&eacute;gation locale vous souhaite la bienvenue sur son site internet. </p>
      <p align="center">Brest et son agglom&eacute;ration compte plus de 200 000 habitants. </p>
            <p align="center">Ce site internet est l'occasion pour vous particulier ou entreprise de nous rejoindre et de nous aider r&eacute;guli&egrave;rement ou ponctuellement.</p>
      <p align="center">Nous avons besoin de toutes les bonnes volont&eacute;s ! </p>
    </div>
    <div class="story">
      <h3>&nbsp;</h3>
    </div>
    <div class="story">
      <table width="100%" cellpadding="0" cellspacing="0" summary="">
        <tr valign="top">
          <td width="49%" class="storyLeft">
          <p align="center"> <a href="Actu1.php" target="_blank" class="capsule">Actualit&eacute;s </a><span class="Style5">Aucune actualit&eacute;</span></p>          </td>
          <td width="51%">
          <p align="center"> <a href="Actu_social.php" target="_blank" class="capsule">Actualit&eacute;s </a><span class="Style8">Op&eacute;ration papiers cadeaux : Nous avons besoin de vous </span></p>          </td>
        </tr>
        <tr valign="top">
          <td class="storyLeft">
          <p align="center"><a href="Actu2.php"><img src="Images/01.PNG" width="311" height="217" border="0" /></a></p>          </td>
          <td>
          <p align="center"><a href="Actu1.phpl"><img src="Images/02.PNG" width="312" height="225" border="0" /></a></p>          </td>
        </tr>
      </table>
    </div>
  </div>
  <?php include("piedpage.php"); ?>
</div>
<?php include("tete.php"); ?>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>
yanniks est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 17/11/2011, 11h10   #6
Membre chevronné
 
Avatar de Marc3001
 
Homme
Ingénieur développement logiciels
Inscription : février 2008
Messages : 430
Détails du profil
Informations personnelles :
Sexe : Homme
Âge : 28
Localisation : France, Ille et Vilaine (Bretagne)

Informations professionnelles :
Activité : Ingénieur développement logiciels

Informations forums :
Inscription : février 2008
Messages : 430
Points : 682
Points : 682
Je ne retouve pas ce code :
Code :
</a><img src="Images/logo site.png" width="806" height="120" alt="" />
dans ton dernier post....
__________________
Le logiciel, c'est comme le sexe, c'est meilleur quand c'est libre.

Linus Torvalds
Marc3001 est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 03/01/2012, 19h05   #7
Invité régulier
 
Homme Yannick
Lycéen
Inscription : novembre 2011
Messages : 43
Détails du profil
Informations personnelles :
Nom : Homme Yannick
Localisation : France, Finistère (Bretagne)

Informations professionnelles :
Activité : Lycéen

Informations forums :
Inscription : novembre 2011
Messages : 43
Points : 9
Points : 9
Bonjour,

Je me permet de remonter le sujet car je suis un petit peu perdu. Je rajoute un screen pour mieux comprendre car je ne vois pas d'ou cela peut venir ....

Lorsque la page est grande as de soucis mais des que je souhaite la rétrécir l'image se décale en dessous (voir image)

Merci de votre aide.

Ludovic

yanniks est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 03/01/2012, 21h14   #8
Expert Confirmé Sénior
 
Inscription : septembre 2004
Messages : 5 090
Détails du profil
Informations forums :
Inscription : septembre 2004
Messages : 5 090
Points : 7 013
Points : 7 013
Tu as oublié de montrer à quoi ça devrait ressembler.

Et de répondre aux questions au-dessus : le code ! On trouve pas celui que tu avais donné au début dans celui que tu as montré en dernier ! C'est lequel le vrai ? Que font chacun d'entre eux ?
thelvin est actuellement connecté   Envoyer un message privé Réponse avec citation 00
Vieux 03/01/2012, 21h52   #9
Invité régulier
 
Homme Yannick
Lycéen
Inscription : novembre 2011
Messages : 43
Détails du profil
Informations personnelles :
Nom : Homme Yannick
Localisation : France, Finistère (Bretagne)

Informations professionnelles :
Activité : Lycéen

Informations forums :
Inscription : novembre 2011
Messages : 43
Points : 9
Points : 9
En réalité ça devrait donner ceci :



Concernant mon code, le morceaux qui merdouille correspond à mon ficher d'en tête puisuq'uil est présent sur toutes les pages dont voici l'intégralité :

Code :
1
2
3
4
<link href="emx_nav_left.css" rel="stylesheet" type="text/css" />
<div align="left">
 <a href="index.php"><img src="Images/logoCRF.PNG" width="319" height="120" border="0" /></a><span class="img3"><img src="Images/logo site.png" width="559" height="83" border="0"  /></span>
 </div>
Le spanclasse img3 que j'essaie de modifier pour ne plus que ça bug est extrait du css dont voici l'extrait :

J'espère avoir répondu à vos questions,

Merci

Ludovic
yanniks est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 04/01/2012, 20h13   #10
Modérateur
 
Avatar de NoSmoking
 
Homme
Inscription : janvier 2011
Messages : 2 944
Détails du profil
Informations personnelles :
Sexe : Homme
Localisation : France, Isère (Rhône Alpes)

Informations forums :
Inscription : janvier 2011
Messages : 2 944
Points : 4 776
Points : 4 776
Bonjour,
mets un min-width: sur le contenant comme cela il ne repoussera pas les éléments à la ligne.
NoSmoking est déconnecté   Envoyer un message privé Réponse avec citation 00
Vieux 05/01/2012, 20h40   #11
Invité régulier
 
Homme Yannick
Lycéen
Inscription : novembre 2011
Messages : 43
Détails du profil
Informations personnelles :
Nom : Homme Yannick
Localisation : France, Finistère (Bretagne)

Informations professionnelles :
Activité : Lycéen

Informations forums :
Inscription : novembre 2011
Messages : 43
Points : 9
Points : 9
Merci
yanniks est déconnecté   Envoyer un message privé Réponse avec citation 00
Réponse Proposer ce sujet en actualité
Outils de la discussion



Fuseau horaire GMT +2. Il est actuellement 13h30.


 
 
 
 
Partenaires

Hébergement Web