Ver Mensaje Individual
  #10 (permalink)  
Antiguo 20/09/2013, 01:59
Avatar de nachotator
nachotator
 
Fecha de Ingreso: noviembre-2008
Mensajes: 107
Antigüedad: 16 años, 1 mes
Puntos: 1
Respuesta: Centrar menu en un div?

Asi es como estaba el CSS al principio y tampoco me funciona, te pongo el HTML entero por si tuviera algun problema o algo con la tabla donde esta la imagen y todo (como estpy haciendo pruebas, he quitado la parte donde esta el texto):

HTML:

Código:
<!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" xml:lang="es-es" lang="es-es" >
<head>
<style>
/*Menu*/

#moduletable {
	width:632;
	
}
#menuh {
        font: 80% "Trebuchet MS", Arial, Helvetica, sans-serif;
        margin-top: 20px;
		/*float:right;*/
		margin: 0 auto;
}

#menuh ul, li {
        list-style-type: none;
		}

#menuh ul {
	margin:auto;
      
}

#menuh li {
        float: left;		
}

#menuh a {
        text-decoration: none;
        color: #FFFFFF;
        background: #0066FF;
        display: block;
        padding: 3px 10px;
        text-align: center;
        border: 1px solid #ACCFE8;
        border-width: 1px 1px 1px 0;
}


#menuh a#primero {
        border-left: 1px solid #ACCFE8;
}

#menuh a:hover {
        background: #DBEBF6;
}
</style>
  <base href="http://jantoniodomenechcorral.com/" />
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <meta name="author" content="Super User" />
  <meta name="generator" content="Joomla! - Open Source Content Management" />
  <title>Biografía</title>
  <script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
  <script src="/media/system/js/core.js" type="text/javascript"></script>
  <script src="/media/system/js/caption.js" type="text/javascript"></script>
  <script type="text/javascript">
window.addEvent('load', function() {
				new JCaption('img.caption');
			});
  </script>
 
 <link rel="stylesheet" href="/templates/system/css/system.css" type="text/css" /> 
 <link rel="stylesheet" href="/templates/system/css/general.css" type="text/css" /> 
 <link rel="stylesheet" href="/templates/papa/css/estilo.css" type="text/css" /> 
</head>
<BODY Text="#000000" BgColor="#ffffff" LeftMargin="6" TopMargin="6" MarginWidth="6" MarginHeight="6" BackGround="xbg.gif">
  <TABLE BgColor="#ffffff" Align="Center" Border="0" CellSpacing="0" CellPadding="0">
      <TBODY>
          <TR>
              <TD Width="632" VAlign="Top" Align="Center">
                  <TABLE Width="100%" BgColor="#ffffff" Border="0" CellSpacing="0" CellPadding="0">
                      <TBODY>
                          <TR>
                              <TD Width="632" BgColor="#ffffff" VAlign="Top" Align="Center"><img src="/templates/papa/img/titulo.jpg" width="630" height="150" alt="J. Antonio Domenech Corral"><BR></TD>
                          </TR>
                        </TBODY>
                  </TABLE>
                   
                     <div id="menuh">
        		<div align="center" class="moduletable">
					
<ul class="menu">
<li class="item-468 current active"><a href="/" >Biografía</a></li><li class="item-469"><a href="/index.php/actualidad" >Actualidad</a></li><li class="item-470"><a href="/index.php/libros" >Libros</a></li><li class="item-471"><a href="/index.php/periodicos" >Periódicos</a></li><li class="item-474"><a href="/index.php/investigacion" >Investigación</a></li><li class="item-472"><a href="/index.php/consultas" >Consultas</a></li><li class="item-473"><a href="/index.php/contacto" >Contacto</a></li></ul>
		</div>
	
                     </div>
                     
                              
              </TD>
                         </TR>
                     </TBODY>
                  </TABLE>
     </BODY>
</HTML>