I've been struggling to align the menu table to match the homepage, but so far I haven't had any success. It seems like the main index.php page is using its own CSS for some unknown reason.
Check out lcrisq.com
Here is the desired design:
Take a look at the style.css:
.chromestyle{
position: absolute;
top: 33px;
margin-left: 195px;
width: 401px;
z-index: 100;
}
.chromestyle ul{
background: url('images/backgrounds/nav.png') repeat-x top left;
width: 431px;
height: 40px;
padding: 0;
margin: 0;
text-align: center;
}
.chromestyle td{
background: url('images/backgrounds/nav.png') repeat-x top left;
width: 131px;
height: 40px;
padding: -30px;
margin: 0;
text-align: center;
}
It seems like I need to figure out a way to decrease the td somehow.