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

AJAX Discussion :

[AJAX] avec un script de menu deroulant


Sujet :

AJAX

  1. #1
    Futur Membre du Club
    Inscrit en
    Juillet 2006
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2006
    Messages : 14
    Points : 9
    Points
    9
    Par défaut [AJAX] avec un script de menu deroulant
    Bonjour,

    à la recherche d'un équivalent au "plus" de la page d'accueil de google:

    je suis tombé sur ce script:
    http://www.dynamicdrive.com/dynamici...lapcontent.htm
    pour faire fonctionner ce script, il faut entre autre ajouter quelques styles au div (qui sera le menu):
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    style="position:absolute; visibility: hidden; border: 9px solid black; background-color: lightyellow; width: 350px; height: 120px; padding: 4px;"
    jusque là tout va bien, sauf que le template css que j'utilise (http://www.styleshout.com/templates/...1-0/index.html) me decale le menu déroulant au milieu de la page au lieu de le mettre juste en dessous du texte sur lequel j'ai fais un lien
    je n'arrive pas à trouver ce qui gène, j'imagine qu'il y a un "conflit" entre le template css et les styles du div pour le menu déroulant. Mais je ne trouve pas la solution miracle :\
    Voici ce que ca donne:

    le menu contenant "coucou et cuicui" devrait se trouver juste en dessous du lien "Partager".
    Merci de votre aide.

  2. #2
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mars 2009
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2009
    Messages : 17
    Points : 8
    Points
    8
    Par défaut
    je mis connais un peu mais faut les sources (css, html, js) ...

  3. #3
    Futur Membre du Club
    Inscrit en
    Juillet 2006
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2006
    Messages : 14
    Points : 9
    Points
    9
    Par défaut
    Citation Envoyé par dallas62 Voir le message
    je mis connais un peu mais faut les sources (css, html, js) ...
    http://www.styleshout.com/hits.php?t...stField1-0.zip
    pour le .css et le .html (assez gros, donc je ne l'ai pas copié ici)
    coté html j'ai inclus le code du script de menu deroulant avec le .html du fichier .zip j'ai le meme probleme.
    coté script il faut:
    télécharger le .js: http://www.dynamicdrive.com/dynamici...downcontent.js
    mettre dans le head:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <script type="text/javascript" src="dropdowncontent.js"></script>
    et dans le body (à inclure dans le .html du template):
    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
    <!--Example #1: -->
     
    <p>Demo #1: <a href="http://www.dynamicdrive.com" id="searchlink" rel="subcontent">Search DD</a></p>
     
     
    <DIV id="subcontent" style="position:absolute; visibility: hidden; border: 9px solid orange; background-color: white; width: 300px; padding: 8px;">
     
    <p><b>Search Dynamic Drive:</b></p>
    <form method="get" action="http://search.freefind.com/find.html" id="topform">
    <input name="query" maxlength="255" style="width: 150px" id="topsearchbox" alt="Search" /> 
    <input value="Search" class="topformbutton" type="submit" />
    </form>
     
    <div align="right"><a href="javascript:dropdowncontent.hidediv('subcontent')">Hide this DIV manually</a> | <a href="http://www.dynamicdrive.com">Dynamic Drive</a></div>
     
     
    </DIV>
     
     
     
     
     
     
    <!--Example #2: -->
     
    <p align="right" style="margin-top: 400px">Demo #2 (click): <a href="http://www.dynamicdrive.com/resources/" id="contentlink" rel="subcontent2">Additional Resources</a> </p>
     
     
    <DIV id="subcontent2" style="position:absolute; visibility: hidden; border: 9px solid black; background-color: lightyellow; width: 350px; height: 120px; padding: 4px;">
     
    <div style="width: 49%; float: left">
    <ul>
    <li><a href="http://www.dynamicdrive.com">Dynamic Drive</li>
    <li><a href="http://www.javascriptkit.com">JavaScript Kit</li>
    <li><a href="http://www.cssdrive.com">CSS Drive</li>
    <li><a href="http://www.codingforums.com">Coding Forums</li>
    </ul>
    </div>
     
    <div style="width: 49%; float: left">
    <ul>
    <li><a href="http://www.cnn.com">CNN</li>
    <li><a href="http://www.msnbc.com">MSNBC</li>
    <li><a href="http://www.news.bbc.co.uk">BBC News</li>
    <li><a href="http://www.slashdot.org">Slashdot</li>
    </ul>
    </div>
     
    <div align="right"><a href="javascript:dropdowncontent.hidediv('subcontent2')">Hide this DIV manually</a></div>
     
    </DIV>
     
    <script type="text/javascript">
    //Call dropdowncontent.init("anchorID", "positionString", glideduration, "revealBehavior") at the end of the page:
     
    dropdowncontent.init("searchlink", "right-bottom", 500, "mouseover")
    dropdowncontent.init("contentlink", "left-top", 300, "click")
     
    </script>

  4. #4
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mars 2009
    Messages
    17
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2009
    Messages : 17
    Points : 8
    Points
    8
    Par défaut
    poste les sources ...
    ton zip contient que le template
    on ne peut pas ... ERREUR 403 : forbidden
    sa iras plus vite que de télécharger

  5. #5
    Futur Membre du Club
    Inscrit en
    Juillet 2006
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2006
    Messages : 14
    Points : 9
    Points
    9
    Par défaut
    Voici les sources:
    fichier html du template:
    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
    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
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
     
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
     
    <meta name="Description" content="Information architecture, Web Design, Web Standards." />
    <meta name="Keywords" content="your, keywords" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <meta name="Distribution" content="Global" />
    <meta name="Author" content="Erwin Aligam - ealigam@gmail.com" />
    <meta name="Robots" content="index,follow" />
     
    <link rel="stylesheet" href="templates/harvestfield/css/template.css" type="text/css" />
    <script type="text/javascript" src="includes/js/dropdowncontent.js"></script>
    <title>HarvestField</title></head>
     
    <body>
    <!-- wrap starts here -->
    <div id="wrap">
     
    	<!--header -->
    	<div id="header">			
     
    		<h1 id="logo-text"><a href="index.html" title="">harvest<span>field</span></a></h1>		
    		<h2 id="slogan">put your site slogan here...</h2>		
     
    		<div id="header-links">
    			<p>
     
    				<a href="index.html">Home</a> | 
    				<a href="index.html">Contact</a> | 
    				<a href="index.html">Site Map</a>			
    			</p>		
    		</div>				
     
    	<!--header ends-->					
    	</div>
     
    	<!-- navigation starts-->	
    	<div  id="nav">
     
    		<div id="light-brown-line"></div>	
     
    		<ul>
     
    			<li id="current"><a href="index.html">Home</a></li>
    			<li><a href="index.html">Archives</a></li>
    			<li><a href="index.html">Downloads</a></li>
    			<li><a href="index.html">Services</a></li>
    			<li><a href="index.html">Support</a></li>
    			<li><a href="index.html">About</a></li>		
    		</ul>
     
     
    	<!-- navigation ends-->	
    	</div>	
     
    	<!-- content-wrap starts -->
    	<div id="content-wrap">
     
    		<div id="sidebar">
     
    			<h1>Search Box</h1>	
    			<form action="#" class="searchform">
    				<p>
    				<input name="search_query" class="textbox" type="text" />
      				<input name="search" class="button" value="Search" type="submit" />
     
    				</p>			
    			</form>	
     
    			<h1>Sidebar Menu</h1>
    			<ul class="sidemenu">				
    				<li><a href="index.html">Home</a></li>
    				<li><a href="#TemplateInfo">Template Info</a></li>
    				<li><a href="#SampleTags">Sample Tags</a></li>
    				<li><a href="http://www.styleshout.com/">More Free Templates</a></li>	
    				<li><a href="http://www.4templates.com/?aff=ealigam">Premium Templates</a></li>	
    			</ul>	
     
    			<h1>Links</h1>
     
    			<ul class="sidemenu">
    				<li><a href="http://www.pdphoto.org/">PDPhoto.org</a></li>
    				<li><a href="http://www.squidfingers.com/patterns/">Squidfingers | Patterns</a></li>
    				<li><a href="http://www.alistapart.com">Alistapart</a></li>					
    				<li><a href="http://www.cssremix.com">CSS Remix</a></li>
    				<li><a href="http://www.dark-i.com/">Dark Eye</a></li>
    			</ul>
     
     
    			<h1>Sponsors</h1>
    			<ul class="sidemenu">
    				<li><a href="http://www.4templates.com/?aff=ealigam"><strong>4templates</strong></a> <br /> Low Cost Hi-Quality Templates</li>
    				<li><a href="http://store.templatemonster.com?aff=ealigam"><strong>TemplateMonster</strong></a> <br /> Delivering the Best Templates on the Net!</li>
     
    				<li><a href="http://www.fotolia.com/partner/114283"><strong>Fotolia</strong></a> <br /> Free stock images or from $1</li>
    				<li><a href="http://www.bigstockphoto.com/?refid=grKPpdNw6k"><strong>BigStockPhoto</strong></a> <br /> Truly royalty-free stock photos</li>
    				<li><a href="http://www.dreamhost.com/r.cgi?287326"><strong>Dreamhost</strong></a> <br /> Premium webhosting</li>
     
    			</ul>
     
    			<h1>Wise Words</h1>
    			<p>&quot;Every adversity, every failure, every heartache 
    			carries with it the seed on an equal or greater benefit.&quot; </p>
     
    			<p class="align-right">- Napoleon Hill</p>
     
    			<h1>Support Styleshout</h1>
    			<p>If you are interested in supporting my work and would like to contribute, you are
    			welcome to make a small donation through the 
    			<a href="http://www.styleshout.com/">donate link</a> on my website - it will 
    			be a great help and will surely be appreciated.</p>			
     
    		<!-- sidebar ends -->		
    		</div>
     
     
    		<div id="main">
     
    <!--Example #1: -->
     
    <p>Demo #1: <a href="http://www.dynamicdrive.com" id="searchlink" rel="subcontent">Search DD</a></p>
     
     
    <DIV id="subcontent" style="position:absolute; visibility: hidden; border: 9px solid orange; background-color: white; width: 300px; padding: 8px;">
     
    <p><b>Search Dynamic Drive:</b></p>
    <form method="get" action="http://search.freefind.com/find.html" id="topform">
    <input name="query" maxlength="255" style="width: 150px" id="topsearchbox" alt="Search" /> 
    <input value="Search" class="topformbutton" type="submit" />
     
    </form>
     
    <div align="right"><a href="javascript:dropdowncontent.hidediv('subcontent')">Hide this DIV manually</a> | <a href="http://www.dynamicdrive.com">Dynamic Drive</a></div>
     
     
    </DIV>
     
     
     
     
     
     
    <!--Example #2: -->
     
    <p align="right" style="margin-top: 400px">Demo #2 (click): <a href="http://www.dynamicdrive.com/resources/" id="contentlink" rel="subcontent2">Additional Resources</a> </p>
     
     
    <DIV id="subcontent2" style="position:absolute; visibility: hidden; border: 9px solid black; background-color: lightyellow; width: 350px; height: 120px; padding: 4px;">
     
    <div style="width: 49%; float: left">
    <ul>
    <li><a href="http://www.dynamicdrive.com">Dynamic Drive</li>
    <li><a href="http://www.javascriptkit.com">JavaScript Kit</li>
    <li><a href="http://www.cssdrive.com">CSS Drive</li>
     
    <li><a href="http://www.codingforums.com">Coding Forums</li>
    </ul>
    </div>
     
    <div style="width: 49%; float: left">
    <ul>
    <li><a href="http://www.cnn.com">CNN</li>
    <li><a href="http://www.msnbc.com">MSNBC</li>
    <li><a href="http://www.news.bbc.co.uk">BBC News</li>
    <li><a href="http://www.slashdot.org">Slashdot</li>
    </ul>
    </div>
     
    <div align="right"><a href="javascript:dropdowncontent.hidediv('subcontent2')">Hide this DIV manually</a></div>
     
    </DIV>
     
    <script type="text/javascript">
    //Call dropdowncontent.init("anchorID", "positionString", glideduration, "revealBehavior") at the end of the page:
     
    dropdowncontent.init("searchlink", "right-bottom", 500, "mouseover")
    dropdowncontent.init("contentlink", "left-top", 300, "click")
     
    </script>
     
     
    			<a name="TemplateInfo"></a>
    			<h1>Template Info</h1>
     
    			<p><strong>HarvestField 1.0</strong> is a free, W3C-compliant, CSS-based website template 
    			by <strong><a href="http://www.styleshout.com/">styleshout.com</a></strong>. This work is 
    			distributed under the <a rel="license" href="http://creativecommons.org/licenses/by/2.5/">
     
    			Creative Commons Attribution 2.5  License</a>, which means that you are free to 
    			use and modify it for any purpose. All I ask is that you include a link back to  
    			<a href="http://www.styleshout.com/">my website</a> in your credits.</p>  
     
    			<p>For more free designs, you can visit 
    			<a href="http://www.styleshout.com/">my website</a> to see 
    			my other works.</p>
     
    			<p>Good luck and I hope you find my free templates useful!</p>
     
    			<p class="post-footer">		
    			<a href="index.html" class="readmore">Read more</a> |
    			<a href="index.html" class="comments">Comments (7)</a> |				
    			<span class="date">June 30, 2007</span>	
    			</p>
     
     
    			<a name="SampleTags"></a>
    			<h1>Sample Tags</h1>
     
    			<h3>Code</h3>				
    			<p><code>
    			code-sample { <br />
    			font-weight: bold;<br />
    			font-style: italic;<br />				
    			}		
    			</code></p>	
     
    			<h3>Example Lists</h3>
     
     
    			<ol>
    				<li>Here is an example</li>
    				<li>of an ordered list</li>								
    			</ol>	
     
    			<ul>
    				<li>Here is an example</li>
    				<li>of an unordered list</li>								
    			</ul>				
     
    			<h3>Blockquote</h3>			
    			<blockquote><p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy 
    			nibh euismod tincidunt ut laoreet dolore magna aliquam erat....</p></blockquote>
     
     
    			<h3>Image and text</h3>
    			<p><a href="http://getfirefox.com/"><img src="images/firefox-gray.jpg" width="100" height="120" alt="firefox" class="float-left" /></a>
    			Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. 
    			Cras id urna. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu 
    			posuere nunc justo tempus leo. Donec mattis, purus nec placerat bibendum, dui pede condimentum 
    			odio, ac blandit ante orci ut diam. Cras fringilla magna. Phasellus suscipit, leo a pharetra 
    			condimentum, lorem tellus eleifend magna, eget fringilla velit magna id neque. Curabitur vel urna. 
    			In tristique orci porttitor ipsum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec libero. Suspendisse bibendum. 
    			Cras id urna. Morbi tincidunt, orci ac convallis aliquam, lectus turpis varius lorem, eu 
    			posuere nunc justo tempus leo. 				
    			</p>
     
    			<h3>Table Styling</h3>							
    			<table>
    				<tr>
    					<th class="first"><strong>post</strong> date</th>
     
    					<th>title</th>
    					<th>description</th>
    				</tr>
    				<tr class="row-a">
    					<td class="first">04.18.2007</td>
    					<td><a href="index.html">Augue non nibh</a></td>
    					<td><a href="index.html">Lobortis commodo metus vestibulum</a></td>
     
    				</tr>
    				<tr class="row-b">
    					<td class="first">04.18.2007</td>
    					<td><a href="index.html">Fusce ut diam bibendum</a></td>
    					<td><a href="index.html">Purus in eget odio in sapien</a></td>
    				</tr>
    				<tr class="row-a">
     
    					<td class="first">04.18.2007</td>
    					<td><a href="index.html">Maecenas et ipsum</a></td>
    					<td><a href="index.html">Adipiscing blandit quisque eros</a></td>
    				</tr>
    				<tr class="row-b">
    					<td class="first">04.18.2007</td>
    					<td><a href="index.html">Sed vestibulum blandit</a></td>
     
    					<td><a href="index.html">Cras lobortis commodo metus lorem</a></td>
    				</tr>
    			</table>
     
    			<h3>Example Form</h3>
    			<form action="#">			
    			<p>			
    			<label>Name</label>
    			<input name="dname" value="Your Name" type="text" size="30" />
     
    			<label>Email</label>
    			<input name="demail" value="Your Email" type="text" size="30" />
    			<label>Your Comments</label>
    			<textarea rows="5" cols="5"></textarea>
    			<br />	
    			<input class="button" type="submit" />		
    			</p>		
    			</form>				
    			<br />	
     
    		<!-- main ends -->	
    		</div>
     
     
    	<!-- content-wrap ends-->	
    	</div>
     
    	<!-- column starts -->		
    	<div id="column-wrap">
     
    		<div id="columns">
     
    			<div class="col3">
    				<h2>Tincidunt</h2>
    				<ul>
    					<li><a href="index.html">consequat molestie</a></li>
     
    					<li><a href="index.html">sem justo</a></li>
    					<li><a href="index.html">semper</a></li>
    					<li><a href="index.html">magna sed purus</a></li>
    					<li><a href="index.html">tincidunt</a></li>
    				</ul>
    			</div>
     
    			<div class="col3-center">
    				<h2>Sed purus</h2>
    				<ul>
    					<li><a href="index.html">consequat molestie</a></li>
    					<li><a href="index.html">sem justo</a></li>
    					<li><a href="index.html">semper</a></li>
    					<li><a href="index.html">magna sed purus</a></li>
     
    					<li><a href="index.html">tincidunt</a></li>
    				</ul>
    			</div>
     
    			<div class="col3">
    				<h2>Praesent</h2>
    				<ul>
    					<li><a href="index.html">consequat molestie</a></li>
     
    					<li><a href="index.html">sem justo</a></li>
    					<li><a href="index.html">semper</a></li>
    					<li><a href="index.html">magna sed purus</a></li>
    					<li><a href="index.html">tincidunt</a></li>					
    				</ul>
    			</div>
    		<!-- footer-columns ends -->
     
    		</div>	
     
    	<!-- column-wrap ends-->
    	</div>
     
    	<!-- footer starts -->
    	<div id="footer">		
     
    		<p>
    		&copy; 2006 <strong>Your Company</strong> | 
    		Design by: <a href="http://www.styleshout.com/">styleshout</a> | 
    		Valid <a href="http://validator.w3.org/check?uri=referer">XHTML</a> | 
    		<a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>
     
     
       	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
     
    		<a href="index.html">Home</a>&nbsp;|&nbsp;
       	<a href="index.html">Sitemap</a>&nbsp;|&nbsp;
    	   <a href="index.html">RSS Feed</a>
       	</p>		
     
    	<!-- footer ends -->		
    	</div>	
     
     
    <!-- wrap ends here -->
    </div>
     
    </body>
    </html>
    fichier .css du template:
    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
    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
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
     
    /********************************************
       AUTHOR:  			Erwin Aligam 
       WEBSITE:   			http://www.styleshout.com/
    	TEMPLATE NAME:		HarvestField
       TEMPLATE CODE: 	S-0015
       VERSION:          1.0          	
    	DATE:             June-30-2007               
     *******************************************/
     
    /********************************************
       HTML ELEMENTS
    ********************************************/ 
     
    /* Top Elements */
    * { margin: 0; padding: 0; border: 0 }
     
    body {
    	background: #E2DDD9 url(../images/bg.jpg) repeat-y center top;
    	font: 70%/1.5em Verdana, Tahoma, arial, sans-serif;
    	color: #6B4F2E; 
    	text-align: center;		
    }
     
    /* links */
    a, a:visited {	
    	color: #BE420D;
    	background: inherit;
    	text-decoration: none;
    }
    a:hover {
    	color: #88ac0b;
    	background: inherit;
    	text-decoration: underline;
    }
     
    /* headers */
    h1, h2, h3 {
    	font-family: 'Trebuchet MS', Tahoma, Sans-serif;
    	font-weight: Bold; 		
    }
    h1 {
    	font-size: 160%;	
    	font-weight: normal;
    }
    h2 {
    	font-size: 135%;
    	text-transform: uppercase;
    	color: #88ac0b;
    }
    h3 {
    	font-size: 135%;	
    }
     
    h1, h2, h3, p {
    	padding: 10px;		
    	margin: 0;
    }
    ul, ol {
    	margin: 0px 5px;
    	padding: 0 20px;
    }
     
    /* images */
    img {
    	background: #FAFAFA;
       border: 1px solid #DCDCDC;
    	padding: 5px;
    }
    img.normal {
    background: transparent;
    border: 0px;
    padding: 0px;
    }
    img.float-right {
      	margin: 5px 0px 10px 10px;
    }
    img.float-left {
      	margin: 5px 10px 5px 0px;
    	clear: left;
    }
     
    code {
      	margin: 5px 0;
      	padding: 10px;
      	text-align: left;
      	display: block;
      	overflow: auto;  
      	font: 500 1em/1.5em 'Lucida Console', 'courier new', monospace ;
      	/* white-space: pre; */
      	background: #F9F7DD;
    	border: 1px solid #E0DBC9;  
    }
    acronym {
      cursor: help;
      border-bottom: 1px solid #777;
    }
    blockquote {
    	margin: 10px;
     	padding: 0 0 0 25px;  
       background: #F9F7DD;
    	border: 1px solid #E0DBC9;
    	font: bold 1.3em/1.5em 'Trebuchet MS', Tahoma, Sans-serif;
    	color: #563E24;
    }
     
     
    /* start - table */
    table {
    	border-collapse: collapse;
    	margin: 10px;	
    }
    table.normal {
            margin: 0px;
    }
     
    th strong {
    	color: #fff;
    }
    th {
    	background: #93BC0C;
    	height: 2px;
    	padding-left: 5px;
    	padding-right: 5px;
    	color: #FFF;
    	text-align: left;
    	border-left: 1px solid #B6D59A;
    	border-bottom: solid 2px #FFF;
    }
    tr {
    	height: 0px;
    }
    tr.normal {
            height: 0px;
    }
    td {
    	padding-left: 5px;
    	padding-right: 5px;
    	border-left: 1px solid #E8E8E8;
    	border-bottom: 1px solid #DFDFDF;
    }
    td.normal {
            padding-left: 2px;
            padding-right: 2px;
            border-left: 0px solid #E8E8E8;
            border-bottom: 0px solid #DFDFDF;
    	vertical-align: top;
    }
     
    td.first,th.first {
    	border-left: 0px;
    }
    tr.row-a {
    	background: #F8F8F8;
    }
    tr.row-b {
    	background: #EFEFEF;		
    }
    /* end - table */
     
    /* form elements */
    form {
    	margin:10px; padding: 0 5px;
    	background: #F9F7DD;
    	border: 1px solid #E0DBC9; 	
    }
    form.normal {
            margin:0px; padding: 0 0px;
            border: 0px;
    }
     
    label {
    	display:block;
    	font-weight:bold;
    	margin:5px 0;
    }
    input {
    	padding:2px;
    	border:1px solid #eee;
    	font: normal 1em Verdana, sans-serif;
    	color:#777;
    }
    select {
            padding:2px;
            border:1px solid #eee;
            font: normal 1em Verdana, sans-serif;
            color:#777;
    }
    textarea {
    	width:400px;
    	padding:2px;
    	font: normal 1em Verdana, sans-serif;
    	border:1px solid #eee;
    	height:100px;
    	display:block;
    	color:#777;
    }
    input.button { 
    	font: bold 12px Arial, Sans-serif; 
    	height: 24px;
    	margin: 0;
    	padding: 2px 3px; 
    	color: #FFF;
    	background: #8EB50C;
    	border: none;
    }
     
    /* search form */
    .searchform {
    	background-color: transparent;
    	border: none;	
    	margin: 0; padding: 5px 0 0 0;	
    	width: 190px;	
    }
    .searchform p { margin: 0; padding: 0; }
    .searchform input.textbox { 
    	width: 120px;
    	color: #777; 
    	height: 18px;
    	padding: 2px;	
    	border: 1px solid #E5E5E5;
    	vertical-align: top;
    }
    .searchform input.button { 
    	width: 60px;
    	height: 24px;
    	padding: 2px 5px;
    	vertical-align: top;
    }
     
    /********************************************
       LAYOUT
    ********************************************/ 
    #wrap {
    	position: relative;
    	width: 830px;
    	margin: 0 auto;
    	text-align: left;
    	border-right: 1px solid #FFF;
    	border-left: 1px solid #FFF;
    }
    #content-wrap {
    	position: relative;
    	clear: both;
    	float: left;	
    	width: 830px;	
    	padding: 0; 	
    	border-bottom: 2px solid #FFF;
    	background: #F2EFBA url(../images/contentbg.jpg) repeat-y center top;	
    	display: inline;
    }
    #header {
    	width: 830px;
    	position: relative;
    	height: 150px;
    	background: #FFF url(../images/headerbg.jpg) repeat-x;
    	padding: 0;	
    	color: #FFF;	
    }
    #header h1#logo-text a {
    	position: absolute;
    	margin: 0; padding: 0;
    	font: bold 55px 'Trebuchet MS', Arial, Sans-serif;
    	letter-spacing: -2.5px;
    	color: #BE420D;
    	text-decoration: none;
     
    	/* change the values of top and left to adjust the position of the logo*/
    	top: 45px; left: 20px;	
    }
    #header h1#logo-text span {
    	color: #444;
    }
    #header h2#slogan {
    	position: absolute;
    	margin: 0; padding: 0;
    	font: bold 16px 'Trebuchet MS', Arial, Sans-serif;
    	text-transform: none;
    	color: #444;
     
    	/* change the values of top and left to adjust the position of the slogan*/
    	top: 105px; left: 95px;		
    }
     
    /* header links */
    #header #header-links {
    	position: absolute;
    	top: 25px; right: 10px;	
    	color: #34160B;
    	font-size: 12px;	
    	font-weight: bold;
    }
    #header #header-links a {	
    	color: #34160B;
    	text-decoration: none;	
    }
    #header #header-links a:hover {
    	color: #BE420D;	
    }
     
    /* Navigation */
    #nav {
    	position: relative;
    	clear: both;	
    	padding: 0;		
    	width: 830px;
    	margin: 0 auto;	
    	background: url(../images/menubg.jpg) repeat-x;
    	height: 52px;
    }
    #nav #light-brown-line {
    	position: absolute;
    	background: url(../images/light-brown-line.jpg) no-repeat;
    	height: 10px; width: 240px;
    	top: 0; left: 0;
    }
    #nav ul {
    	position: absolute;
    	list-style: none;
    	text-transform: uppercase;
    	padding: 0;	margin: 0;	
    	right: 0; bottom: 0;
    }
    #nav ul li {
    	display: inline;
    	margin: 0; padding: 0;
    }
    #nav ul li a {
    	display: block;
    	float: left;
    	width: auto;
    	margin: 0;
    	padding: 0 14px; 
    	color: #FFF;
    	font: bold 13px/52px "Century Gothic", "Trebuchet MS", Helvetica, Arial, Geneva, sans-serif;
    	text-transform: uppercase;
    	text-decoration: none;		
    }
    #nav ul li a:hover, 
    #nav ul li a:active {
    	background: url(../images/menupointer.jpg) no-repeat center bottom;	
    }
    #nav ul li#current a {	
    	background: url(../images/menupointer.jpg) no-repeat center bottom;
    	color: #F2EFBA;	
    }
     
    /* Main Column */
    #main {
    	float: right;
    	width: 68%;
    	padding: 0; margin: 0 10px 0 0;
    	display: inline;	
    }
    #main h1 {
    	margin-top: 10px;
    	font: bold 2.2em 'Trebuchet MS', Tahoma, Sans-serif;
    	color: #8C9F0D; 
    	letter-spacing: -1px;
    	padding: 5px 0 5px 5px; 		
    }
    #main ul li {
    	list-style-image: url(../images/bullet.gif);
    }
     
    .post-footer {
    	background: #F9F7DD;
    	padding: 4px; margin: 0px 10px 0 10px;	
    	font-size: 95%;	
    	border: 1px solid #E0DBC9;
    	clear: left;
    }
    .post-footer .date{
    	margin: 0 10px 0 5px;	
    }
    .post-footer a.comments {
    	margin: 0 10px 0 5px;	
    }
    .post-footer a.readmore {
    	margin: 0 10px 0 5px;	
    }
     
    /* Sidebar */	
    #sidebar {
    	float: left;
    	width: 25.5%;
    	padding: 0; 
    	margin: 0 0 0 15px;		
    	display: inline; 
    }	
    #sidebar h1 {
    	margin-top: 10px;
    	padding: 5px 5px; 
    	font: bold 1.5em 'Trebuchet MS', Tahoma, Sans-serif;
    	color: #6B4F2E; 		
    }
    #sidebar ul.sidemenu {
    	text-align: left;
    	margin: 7px 4px 8px 0; padding: 0;
    	text-decoration: none;		
    	border-top: 1px solid #C39F73;
    }
    #sidebar ul.sidemenu li {
    	list-style: none;
    	background: url(../images/dots.jpg) repeat-x left bottom;
    	padding: 4px 0 4px 5px;
    	margin: 0 2px;		
    }
    * html body #sidebar ul.sidemenu li {
    	height: 1%;
    }
    #sidebar ul.sidemenu li a {
    	text-decoration: none;	
    	background-image: none;	
    	color: #6B4F2E;		
    }
    #sidebar ul.sidemenu li a:hover {	
    	color: #88ac0b;	
    }
     
    /* modules */
     
    #module {
            float: left;
            width: 40%;
            padding: 0;
            margin: 0 0 0 15px;
            display: inline;
    }  
     
    #module h1 {
            margin-top: 0px;
            padding: 5px 5px;
            font: bold 1.5em 'Trebuchet MS', Tahoma, Sans-serif;
    }
     
    #module p {
    	clear: both;
    }
     
    /* footer */
    #column-wrap {
    	clear: both;
    	float: left;
    	width: 830px;
    	padding: 10px 0 35px 0;		
    	background: #A0B70D url(../images/footercolbg.jpg) repeat-x left bottom;		
    	border-bottom: 1px solid #CCA066;	
    	border-bottom: 2px solid #FFF;
    }
    #column-wrap a {
    	text-decoration: none;
    	color: #FFF;	
    }
    #column-wrap a:hover {
    	color: #000;	
    }
    #column-wrap h2 {
    	color: #FFF;	
    	margin: 0 0 10px 0;	
    }
     
    #columns {
    	color: #888;
    	margin: 0 auto; 
    	padding: 0;	
    	width: 790px;		
    	background: transparent;
    }
    #columns ul {
    	list-style: none;
    	margin: 10px 0 0 0;
    	padding: 0;	
    	background: url(../images/footer-dots.gif) repeat-x left top;	
    }
    #columns li {
    	background: url(../images/footer-dots.gif) repeat-x left bottom;		
    }
    #columns li a {
    	display: block;
    	font-weight: normal;
    	padding: 3px 0 3px 10px;
    	width: 96%;
    }
    #columns .col3, .col3-center {
    	float: left;
    	width: 32%;
    }
    #columns .col3-center { 
    	margin: 0 15px; 
    }
     
    /* footer*/
    #footer {
    	clear: both;
    	color: #FFF;	
    	width: 830px;
    	padding: 0px 0 0px 0;
    	text-align: center;
    }
    #footer a {
    	color: #F3EFBA;
    	font-weight: bold;
    }
     
    /* alignment classes */
    .float-left  { float: left; }
    .float-right { float: right; }
    .align-left  { text-align: left; }
    .align-right { text-align: right; }
     
    /* display and additional classes */
    .clear { clear: both; }
     
    p.big {
            font-size: 160%;
            font-weight: bold;
    }
     
    #infos {
            background: #e0e4e7;
    	padding: 5px 5px 5px 5px;
    	margin: 5px 5px 5px 5px;
    }
     
    #ingredients {
            background: #f9eee2;
            padding: 5px 5px 5px 5px;
            margin: 5px 5px 5px 5px;
    }
     
    #tags {
            background: #f2f0dc;
            padding: 5px 5px 5px 5px;
            margin: 5px 5px 5px 5px;
    }
     
    #titre {
            margin-top: 10px;
            font: bold 2.2em 'Trebuchet MS', Tahoma, Sans-serif;
            color: #8C9F0D;
            letter-spacing: -1px;
            padding: 5px 0 5px 5px;
    	display: inline; 
    }
     
    #titre2 {
            font: bold 1.3em 'Trebuchet MS', Tahoma, Sans-serif;
            color: #8C9F0D;
            display: inline;
    }
     
    .star-rating,
    .star-rating a:hover,
    .star-rating a:active,
    .star-rating a:focus,
    .star-rating .current-rating{
    background: url(../../../images/icons/star.gif) left -1000px repeat-x;
    }
    .star-rating{
    position:relative;
    width:125px;
    height:25px;
    overflow:hidden;
    list-style:none;
    margin:0;
    padding:0;
    background-position: left top;
    }
    .star-rating li{
    display: inline;
    }
    .star-rating a,
    .star-rating .current-rating{
    position:absolute;
    top:0;
    left:0;
    text-indent:-1000em;
    height:25px;
    line-height:25px;
    outline:none;
    overflow:hidden;
    border: none;
    }
    .star-rating a:hover,
    .star-rating a:active,
    .star-rating a:focus{
    background-position: left bottom;
    }
    .star-rating a.one-star{
    width:20%;
    z-index:6;
    }
    .star-rating a.two-stars{
    width:40%;
    z-index:5;
    }
    .star-rating a.three-stars{
    width:60%;
    z-index:4;
    }
    .star-rating a.four-stars{
    width:80%;
    z-index:3;
    }
    .star-rating a.five-stars{
    width:100%;
    z-index:2;
    }
    .star-rating .current-rating{
    z-index:1;
    background-position: left center;
    }
     
     
    .inline-rating{
    display:-moz-inline-block;
    display:-moz-inline-box;
    display:inline-block;
    vertical-align: middle;
    }
     
    .small-star{
    width:50px;
    height:10px;
    }
    .small-star,
    .small-star a:hover,
    .small-star a:active,
    .small-star a:focus,
    .small-star .current-rating{
    background-image: url(../../../images/icons/star_small.gif);
    line-height: 10px;
    height: 10px;
    }
    dans le .html du template j'ai inséré le code pour le script dropdowncontent.js que voici:
    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
    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
    // Copyright (C) 2005-2008 Ilya S. Lyubinskiy. All rights reserved.
     
    // Technical support: http://www.php-development.ru/
     
    //
     
    // YOU MAY NOT
     
    // (1) Remove or modify this copyright notice.
     
    // (2) Re-distribute this code or any part of it.
     
    //     Instead, you may link to the homepage of this code:
     
    //     http://www.php-development.ru/javascripts/dropdown.php
     
    //
     
    // YOU MAY
     
    // (1) Use this code on your website.
     
    // (2) Use this code as part of another product.
     
    //
     
    // NO WARRANTY
     
    // This code is provided "as is" without warranty of any kind.
     
    // You expressly acknowledge and agree that use of this code is at your own risk.
     
     
     
     
     
    // ***** Popup Control *********************************************************
     
     
     
    // ***** at_show_aux *****
     
     
     
    function at_show_aux(parent, child)
     
    {
     
      var p = document.getElementById(parent);
     
      var c = document.getElementById(child );
     
     
     
      var top  = (c["at_position"] == "y") ? p.offsetHeight+2 : 0;
     
      var left = (c["at_position"] == "x") ? p.offsetWidth +2 : 0;
     
     
     
      for (; p; p = p.offsetParent)
     
      {
     
        top  += p.offsetTop;
     
        left += p.offsetLeft;
     
      }
     
     
     
      c.style.position   = "absolute";
     
      c.style.top        = top +'px';
     
      c.style.left       = left+'px';
     
      c.style.visibility = "visible";
     
    }
     
     
     
    // ***** at_show *****
     
     
     
    function at_show()
     
    {
     
      var p = document.getElementById(this["at_parent"]);
     
      var c = document.getElementById(this["at_child" ]);
     
     
     
      at_show_aux(p.id, c.id);
     
      clearTimeout(c["at_timeout"]);
     
    }
     
     
     
    // ***** at_hide *****
     
     
     
    function at_hide()
     
    {
     
      var p = document.getElementById(this["at_parent"]);
     
      var c = document.getElementById(this["at_child" ]);
     
     
     
      c["at_timeout"] = setTimeout("document.getElementById('"+c.id+"').style.visibility = 'hidden'", 333);
     
    }
     
     
     
    // ***** at_click *****
     
     
     
    function at_click()
     
    {
     
      var p = document.getElementById(this["at_parent"]);
     
      var c = document.getElementById(this["at_child" ]);
     
     
     
      if (c.style.visibility != "visible") at_show_aux(p.id, c.id); else c.style.visibility = "hidden";
     
      return false;
     
    }
     
     
     
    // ***** at_attach *****
     
     
     
    // PARAMETERS:
     
    // parent   - id of the parent html element
     
    // child    - id of the child  html element that should be droped down
     
    // showtype - "click" = drop down child html element on mouse click
     
    //            "hover" = drop down child html element on mouse over
     
    // position - "x" = display the child html element to the right
     
    //            "y" = display the child html element below
     
    // cursor   - omit to use default cursor or specify CSS cursor name
     
     
     
    function at_attach(parent, child, showtype, position, cursor)
     
    {
     
      var p = document.getElementById(parent);
     
      var c = document.getElementById(child);
     
     
     
      p["at_parent"]     = p.id;
     
      c["at_parent"]     = p.id;
     
      p["at_child"]      = c.id;
     
      c["at_child"]      = c.id;
     
      p["at_position"]   = position;
     
      c["at_position"]   = position;
     
     
     
      c.style.position   = "absolute";
     
      c.style.visibility = "hidden";
     
     
     
      if (cursor != undefined) p.style.cursor = cursor;
     
     
     
      switch (showtype)
     
      {
     
        case "click":
     
          p.onclick     = at_click;
     
          p.onmouseout  = at_hide;
     
          c.onmouseover = at_show;
     
          c.onmouseout  = at_hide;
     
          break;
     
        case "hover":
     
          p.onmouseover = at_show;
     
          p.onmouseout  = at_hide;
     
          c.onmouseover = at_show;
     
          c.onmouseout  = at_hide;
     
          break;
     
      }
     
    }
    Merci pour votre temps!

  6. #6
    Futur Membre du Club
    Inscrit en
    Juillet 2006
    Messages
    14
    Détails du profil
    Informations forums :
    Inscription : Juillet 2006
    Messages : 14
    Points : 9
    Points
    9
    Par défaut
    j'ai finalement essayé ce menu déroulant qui fonctionne à merveille avec les css de mon template.
    http://www.dynamicdrive.com/dynamici...pmenuindex.htm

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Formulaire avec menu deroulant
    Par tipoutchi dans le forum Access
    Réponses: 3
    Dernier message: 25/03/2010, 10h41
  2. Script php Menu deroulant utitlsant du CSV
    Par Jerem38 dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 25
    Dernier message: 18/05/2009, 16h16
  3. [SQL] probleme avec script mail menu deroulant
    Par gtraxx dans le forum PHP & Base de données
    Réponses: 2
    Dernier message: 22/09/2006, 03h04
  4. [POO] Tri de photo avec menu deroulant
    Par gueno dans le forum Langage
    Réponses: 6
    Dernier message: 21/03/2006, 18h29
  5. PB avec menu deroulant
    Par vico dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 18/08/2005, 16h50

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