Here you go bro - I went off what your navigation appeared to look like and came up with my own code to run the deal. It probably has some bugs, but I dev'd in Firebird. Never dev for IE. 98% percent of the time, if it works in Firebird, it'll work in IE.
<?xml version="1.0" encoding="iso-8859-1"?> <!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> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <style type="text/css"> html, body { background-color:rgb(238,238,238); text-algin:center; } #outershell { text-align:left; } #navcontainer { width:114px; display:block; border:1px solid #000; font-family:serif; font-size:16px; padding:0; } #navcontainer p.menutitle { text-align:center; font-weight:bolder; border-bottom:1px solid #000; margin:2px auto 5px auto; } #navcontainer ul { width:110px; list-style:none; margin: 3px 2px 2px 2px; padding:0; } #navcontainer ul li { margin:2px 0; padding:2px 0 2px; } #navcontainer ul li a { text-align:left; text-decoration:none; background-color:#CCC; display:block; padding:3px; font-size:16px; font-weight:bold; color:#000; border:1px solid #000; } #navcontainer ul li a:hover { background-color:transparent; } </style> </head> <body> <div id="outershell"> <div id="navcontainer"> <p class="menutitle">Menu</p> <ul> <li><a class="there" href="index2.php?mod=1">Home</a></li> <li><a class="there" href="index2.php?mod=1">Here</a></li> <li><a class="there" href="index2.php?mod=1">There</a></li> <li><a class="there" href="index2.php?mod=1">Photos</a></li> <li><a class="there" href="index2.php?mod=1">Links</a></li> <li><a class="there" href="index2.php?mod=1">About</a></li> <li><a class="there" href="index2.php?mod=1">Contacts</a></li> <li><a class="there" href="index2.php?mod=1">About Site</a></li> <li><a class="there" href="index2.php?mod=1">Site Map</a></li> </ul> </div> </div> </body> </html> Copy paste that wherever, just make sure you retain the category names (i stayed as close to what you had in your source as I could) and don't play with the CSS too much. It might break again. =P Cheers Chris Ryan ------------------ "Heck with kids - standards are our future." Webmaster, http://www.theward.net ***************************************************** The discussion list for http://webstandardsgroup.org/ *****************************************************
