I'm really not thinking straight today, Im trying to get my "navbar" aka my list centered in the in the bottom middle of my header. The header is in a div but my links arent. <!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <style type="text/css"> body { background-color: #fff; margin: 0px; padding: 0px; font-family: arial, Helvetica,sans-serif; } #header { background-image: url(header.jpg); width: 100%; background-repeat: repeat-x; margin-top: 0px; height: 133px; } ul { list-style-type:none; margin:0; padding-left: 10px; } li { display:inline; } a:link { color: #333333; font-size: 18px; text-decoration: none; } a:visited { color: #333333; } a:hover { color: #CCCCCC; background-color: #333333; text-decoration: none; } a:active { color: #333333; } </style> </head> <body> <div id="header"> </div> <!-- End Header Div --> <ul> <li><a href="#">Home</a></li> <li><a href="#">Forum</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> <li><a href="#">Tutorials</a></li> </ul> <div id="container"> <div id="content"> </div> <!--- End Conent div ---> </div> <!-- End Container Div --> </body> </html> Code (markup):
I want my linkbar (navbar, whatever) to appear IN the header image, but in the middle, centered, at the bottom of the header image
I assume your navigation menu is the list of links, as shown below : <ul> <li><a href="#">Home</a></li> <li><a href="#">Forum</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> <li><a href="#">Tutorials</a></li> </ul> HTML: To center the list, find the below content in your CSS and add "text-align:center;" : ul { list-style-type:none; margin:0; padding-left: 10px; } HTML:
Use in css file.... ============= #nav { background:#FFD39B; height:50px; weithL800px; text-color:#A52A2A; text-align:center; } Use in your html file.... ===================== <div id="nav"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Forum</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> <li><a href="#">Tutorials</a></li> </ul> </nav>
better </div> <div id="header"> <ul> <li><a href="#">Home</a></li> <li><a href="#">Forum</a></li> <li><a href="#">About</a></li> <li><a href="#">Contact</a></li> <li><a href="#">Tutorials</a></li> </ul> </div> <!-- End Header Div --> HTML: