Bonjour,
Je souhaite centrer le menu suivant en rouge sur toute la largeur de fenêtre.
http://www.transduction-meeting.lu/setup.php
J'ai essayé avec margin: auto mais cela ne fonctionne pas
Merci d'avance
Modifié par fgaascht (29 Dec 2013 - 11:58)
Je souhaite centrer le menu suivant en rouge sur toute la largeur de fenêtre.
http://www.transduction-meeting.lu/setup.php
J'ai essayé avec margin: auto mais cela ne fonctionne pas
<ul id="header">
<li><a href="http://www.transduction-meeting.lu">Home</a></li>
<li><a href="http://www.transduction-meeting.lu/program.php">Program</a></li>
<li><a href="http://www.transduction-meeting.lu/registration.php">Registration</a></li>
<li><a href="http://www.transduction-meeting.lu/infos.php">Information</a></li>
<li><a href="http://www.transduction-meeting.lu/hotels.php">Hotels</a></li>
<li><a href="http://www.transduction-meeting.lu/meetings.php">Previous meetings</a></li>
<li><a href="http://www.transduction-meeting.lu/contact.php">Contact us</a></li>
</ul>
/* Debut style header */
#header
{
height: 40px;
background-color: #FF00FF;
text-transform: uppercase;
margin: auto;
}
ul#header
{
list-style-type: none;
background-color: #FF0000;
margin: 0 auto;
}
ul#header li
{
float: left;
text-align: center;
}
ul#header li a
{
padding: 5px;
margin: 0 5px 0 5px;
line-height: 25px;
font-size: 0.9em;
font-weight: bold;
letter-spacing: 1px;
color: #FFFFFF;
display: inline-block;
text-decoration: none;
}
ul#header li a:hover
{
color: #FFFFFF;
}
/* Fin style header */
<div id="frame">
<div id="bann">
</div>
<div id="liner"></div>
<div id="header">
<?php include("style/php/header.php"); ?>
</div>
<div id="conteneur">
<div id="texte">
<center>
<h2>Metabolism 2014<br/>
Alterations of metabolic pathways as therapeutic targets<br/>
(Esch-sur-Alzette, Campus Belval, January 29th to 31st, 2014)</h2>
</center>
<br/>
<div class="lettre">
<p>In 1998, we organized the first specialized meeting in the field of signal transduction and gene expression in Luxembourg. This type of meeting was originally thought to teach doctoral students of the <b>molecular and cellular biology master training program</b> of the University of Nancy I (France).</p>
<p>Since then, more than <b>5000 fundamental, clinical and industrial researchers</b> were gathering in Luxembourg for eight different meetings in order to discuss therapeutic applications in the field of signal transduction, transcription and translation related to novel therapeutic applications. These meetings allow new insights into this rapidly moving field.</p>
<p>As in 2011, our 2014 meeting will be held under the auspices of the European Research Institute for Integrated Cellular Pathology. We will publish two special numbers based on the meetings contributions in <a href="http://www.journals.elsevier.com/biochemical-pharmacology/" target="_blank">Biochemical Pharmacology</a> and in <a href="http://www.e-jcp.or.kr" target="_blank">Journal of Cancer Prevention</a>.</p>
<p>The conference will focus on novel advances in the field of metabolic pathways related to disease mechanisms and corresponding innovative therapies. Conferences will document recent advances in this topic including neurodegenerative diseases, diabetes, cancer and ageing.</p>
<p>Welcome to Luxembourg!</p>
<p>Pr Marc Diederich (PhD) and Pr Guido Kroemer (MD, PhD)</p>
</div>
</div>
</div>
<?php include("style/php/footer.php"); ?>
</div>
Merci d'avance
Modifié par fgaascht (29 Dec 2013 - 11:58)