IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Mise en page CSS Discussion :

positionnement css sous prestashop


Sujet :

Positionnement en CSS

  1. #1
    Membre à l'essai
    Profil pro
    Inscrit en
    Octobre 2008
    Messages
    36
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2008
    Messages : 36
    Points : 18
    Points
    18
    Par défaut positionnement css sous prestashop
    Bonsoir a tous,

    je met en place un ptit site e-commerce sous prestashop mais J’ai un petit problème de positionnement de ma colonne de droite qui cache en fait deux boutons “ajouter au panier” et donc je ne peux pas cliquer sur ces boutons (Voir pièces jointes)

    Comment résoudre ce petit problème de css?

    Merci par avance

    Ci joint le code Css de mes colonnes

    Code css : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
     
    #page { width: 1250px; margin: 0 auto 2px auto; text-align:left;
    }
    h1#logo { float: left; width: 29%; margin-top:0.5em;
    } #header { float: left; width: 71%; text-align: right;
    } #left_column, #center_column, #right_column { float:left;
    } #left_column { clear:left; width:190px; padding-right: 15px;
    } #center_column { width: 556px; margin: 0 0 30px 0;
    } #right_column { width: 190px; padding-left: 295px;
     
    }
    Images attachées Images attachées  

  2. #2
    Membre averti
    Profil pro
    Inscrit en
    Février 2009
    Messages
    308
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2009
    Messages : 308
    Points : 349
    Points
    349
    Par défaut
    Bonjour,

    sans la source html voir un lien vers le site ça vas pas être facile

    A vue de nez un probleme de width de la div.

  3. #3
    Membre à l'essai
    Profil pro
    Inscrit en
    Octobre 2008
    Messages
    36
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2008
    Messages : 36
    Points : 18
    Points
    18
    Par défaut
    voila ce que ca donne sous firebug (Voir pieces jointes)
    Images attachées Images attachées  

  4. #4
    Membre averti
    Profil pro
    Inscrit en
    Février 2009
    Messages
    308
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Février 2009
    Messages : 308
    Points : 349
    Points
    349
    Par défaut
    Hum ... mouais et pour tester des solutions je retape tout à la main ?

  5. #5
    Membre à l'essai
    Profil pro
    Inscrit en
    Octobre 2008
    Messages
    36
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Octobre 2008
    Messages : 36
    Points : 18
    Points
    18
    Par défaut
    Code html : 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
    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
     
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr"><head>
     
     
    		<title></title>
    		<meta content="Boutique propulsée par PrestaShop" name="description"/>
    		<meta content="boutique, prestashop" name="keywords"/>
    		<meta content="application/xhtml+xml; charset=utf-8" http-equiv="Content-Type"/>
    		<meta content="PrestaShop" name="generator"/>
    		<meta content="index,follow" name="robots"/>
    		<link href="http://127.0.0.1/prestashop/img/favicon.ico" type="image/vnd.microsoft.icon" rel="icon"/>
    		<link href="http://127.0.0.1/prestashop/img/favicon.ico" type="image/x-icon" rel="shortcut icon"/>
    		<link media="all" type="text/css" rel="stylesheet" href="/prestashop/themes/prestashop/css/global.css"/>
    			<script src="http://127.0.0.1/prestashop/js/tools.js" type="text/javascript"/>
    		<script type="text/javascript">
                            var baseDir = 'http://127.0.0.1/prestashop/';
                            var static_token = 'cee04dbfeccfd1cc0efcc7a4e0f817dc';
                            var token = '83f2ff30033ebeb462dd5a8526cae049';
                            var priceDisplayPrecision = 2;
                    </script>
    		<script src="http://127.0.0.1/prestashop/js/jquery/jquery-1.2.6.pack.js" type="text/javascript"/>
    		<script src="http://127.0.0.1/prestashop/js/jquery/jquery.easing.1.3.js" type="text/javascript"/>
    		<script src="http://127.0.0.1/prestashop/js/jquery/jquery.hotkeys-0.7.8-packed.js" type="text/javascript"/>
     
    </head>
    <body id="index">
    			<noscript><ul><li>Cette boutique n&eacute;cessite JavaScript afin de fonctionner correctement. Merci de l'activer dans votre navigateur.</li></ul></noscript>
    		<div id="page">
     
    			<!-- Header -->
    			<div>
    				<h1 id="logo"><a title="I love Badge" href="http://127.0.0.1/prestashop/"><img alt="I love Badge" src="http://127.0.0.1/prestashop/img/logo.jpg"/></a></h1>
    				<div id="header">
    					<!-- Block permanent links module HEADER -->
    <ul id="header_links">
    	<li id="header_link_1"><a title="1" href="http://127.0.0.1/prestashop/contact-form.php"/></li>
    	<li id="header_link_2"><a title="2" href="http://127.0.0.1/prestashop/contact-form.php"/></li>
    	<li id="header_link_3"><a title="3" href="http://127.0.0.1/prestashop/contact-form.php"/></li>
    	<li id="header_link_4"><a title="4" href="http://127.0.0.1/prestashop/contact-form.php"/></li>
     
    </ul>
    <!-- /Block permanent links module HEADER -->
    				</div>
    			</div>
     
    			<!-- Left -->
    			<div class="column" id="left_column">
    				<!-- MODULE Block SotEW's Adds Left-->
    <div class="Left" id="sotewsadds">
    			<p><img src="/prestashop/modules/sotewsadds/files/Left"/></p>
    </div>
    <!-- /MODULE Block SotEW's Adds Left-->
    			</div>
     
    			<!-- Center -->
    			<div id="center_column">
    	<!-- MODULE Home Featured Products -->
    <div class="block products_block" id="featured-products_block_center">
     
    			<div class="block_content">
    																		<ul style="height: 680px;">
    							<li class="ajax_block_product first_item first_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/11-58-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=11&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_11" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/12-59-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=12&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_12" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/13-60-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=13&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_13" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/14-61-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=14&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_14" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/15-62-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=15&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_15" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item last_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/16-63-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=16&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_16" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item first_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/17-64-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=17&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_17" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/18-65-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=18&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_18" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/19-66-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=19&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_19" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/20-67-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=20&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_20" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/21-68-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=21&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_21" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item last_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/22-69-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=22&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_22" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item first_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/23-70-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=23&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_23" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/24-71-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=24&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_24" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/25-72-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=25&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_25" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/26-73-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=26&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_26" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/27-74-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=27&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_27" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item last_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/28-75-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=28&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_28" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item first_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/29-76-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=29&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_29" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/30-77-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=30&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_30" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/31-78-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=31&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_31" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/32-79-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=32&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_32" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product item  ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/33-80-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=33&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_33" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    							<li class="ajax_block_product last_item last_item_of_line ">
    					<img height="120" width="120" alt="Badge Vierge 001" src="/prestashop/img/p/34-81-home.jpg"/>
    					<div>
    						<p class="price_container"><span class="price">1,00 €</span></p>												
    												<a title="Ajouter au panier" href="http://127.0.0.1/prestashop/cart.php?qty=1&amp;id_product=34&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc&amp;add" rel="ajax_id_product_34" class="exclusive ajax_add_to_cart_button">Add to cart</a>
    											</div>
    				</li>
    						</ul>
    		</div>
    	</div>
    <!-- /MODULE Home Featured Products -->				</div>
     
    <!-- Right -->
    			<div class="column" id="right_column">
     
    <script src="http://127.0.0.1/prestashop/js/jquery/iutil.prestashop-modifications.js" type="text/javascript"/>
    <script src="http://127.0.0.1/prestashop/js/jquery/ifxtransfer.js" type="text/javascript"/>
    <script type="text/javascript">
    var CUSTOMIZE_TEXTFIELD = 1;
    var customizationIdMessage = 'Personnalisation ';
    var removingLinkText = 'supprimer cet article du panier';
    </script>
    <script src="http://127.0.0.1/prestashop/modules/blockcart/ajax-cart.js" type="text/javascript"/>
     
    <!-- MODULE Block cart -->
    <div class="block exclusive" id="cart_block">
    	<h4>
    		<a href="http://127.0.0.1/prestashop/order.php">Panier</a>
    				<span class="hidden" id="block_cart_expand">*</span>
    		<span id="block_cart_collapse">*</span>
    			</h4>
    	<div class="block_content">
    	<!-- block summary -->
    	<div class="collapsed" id="cart_block_summary">
    		<span class="ajax_cart_quantity">1</span>
    		<span class="ajax_cart_product_txt_s hidden">articles</span>
    		<span class="ajax_cart_product_txt">article</span>
    		<span class="ajax_cart_total">1,00 €</span>
    		<span class="ajax_cart_no_product" style="display: none;"/>
    	</div>
    	<!-- block list of products -->
    	<div class="expanded" id="cart_block_list">
    			<dl class="products">
    											<dt class="first_item last_item" id="cart_block_product_16">
    				<span class="quantity-formated"><span class="quantity">1</span>x</span>
    				<a title="Badge Vierge 001" href="http://127.0.0.1/prestashop/product.php?id_product=16" class="cart_block_product_name">Badge Vierge 001</a>
    				<span class="remove_link"><a title="supprimer cet article du panier" href="http://127.0.0.1/prestashop/cart.php?delete&amp;id_product=16&amp;ipa=0&amp;token=cee04dbfeccfd1cc0efcc7a4e0f817dc" class="ajax_cart_block_remove_link"> </a></span>
    				<span class="price">1,00 €</span>
    			</dt>
     
    			<!-- Customizable datas -->
     
     
    				</dl>
    			<p id="cart_block_no_products" class="hidden">Aucun produit</p>
     
     
    		<p id="cart-prices">
    			<span>Expédition</span>
    			<span class="price ajax_cart_shipping_cost" id="cart_block_shipping_cost">7,98 €</span>
    			<br/>
    						<span>Total</span>
    			<span class="price ajax_block_cart_total" id="cart_block_total">8,98 €</span>
    		</p>
    						<p id="cart-buttons">
    			<a title="Panier" class="button_small" href="http://127.0.0.1/prestashop/order.php">Panier</a>
    			<a title="Commander" class="exclusive" id="button_order_cart" href="http://127.0.0.1/prestashop/order.php?step=1">Commander</a>
    		</p>
    	</div>
    	</div>
    </div>
    <!-- /MODULE Block cart -->
    			</div>
     
    <!-- Footer -->
    			<div id="footer"><!-- MODULE Block various links -->
    <ul id="block_various_links_footer" class="block_various_links">
    	<li class="first_item"><a title="" href="http://127.0.0.1/prestashop/prices-drop.php">Promotions</a></li>
    	<li class="item"><a title="" href="http://127.0.0.1/prestashop/new-products.php">Nouveaux produits</a></li>
    	<li class="item"><a title="" href="http://127.0.0.1/prestashop/best-sales.php">Meilleures ventes</a></li>
    	<li class="item"><a title="" href="http://127.0.0.1/prestashop/contact-form.php">Contactez-nous</a></li>
    			<li class="item"><a title="Conditions d'utilisation" href="http://127.0.0.1/prestashop/cms.php?id_cms=3">Conditions d'utilisation</a></li>
    			<li class="item"><a title="A propos" href="http://127.0.0.1/prestashop/cms.php?id_cms=4">A propos</a></li>
    		<li class="last_item">Propulsé par <a href="http://www.prestashop.com">PrestaShop</a></li>
    </ul>
    <!-- /MODULE Block various links -->
    		<script type="text/javascript">
                            var time_start;
                            $(window).load(
                                    function() {
                                            time_start = new Date();
                                    }
                            );
                            $(window).unload(
                                    function() {
                                            var time_end = new Date();
                                            var pagetime = new Object;
                                            pagetime.type = "pagetime";
                                            pagetime.token = "fOUf+aowU7M=48yvFWwEXTc=Wi6w8ehnelc=fx3Q0nqf+ug=";
                                            pagetime.time = time_end-time_start;
                                            $.post("http://127.0.0.1/prestashop/statistics.php", pagetime);
                                    }
                            );
                    </script></div>
    		</div>
    		</body></html>

Discussions similaires

  1. menu css : positionnement inatendu sous IE6
    Par Alexdezark dans le forum Mise en page CSS
    Réponses: 0
    Dernier message: 02/11/2010, 19h59
  2. problème positionnement CSS
    Par Mike35 dans le forum Mise en page CSS
    Réponses: 5
    Dernier message: 24/02/2006, 10h38
  3. [css sous ie] menu qui disparait qd clic sur precedent ...
    Par michaelbob dans le forum Mise en page CSS
    Réponses: 4
    Dernier message: 22/02/2006, 14h37
  4. Positionnement CSS, j'comprends rien !!
    Par guano dans le forum Mise en page CSS
    Réponses: 10
    Dernier message: 16/01/2006, 16h40
  5. Pb de CSS sous IE
    Par NicoStein dans le forum Mise en page CSS
    Réponses: 4
    Dernier message: 04/05/2005, 00h33

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo