Sorry I am using drupal as the client wants to be able to update the content themselves. And Drupal links all those .css files. They main one is the style.css file.
But here is the code I have for the menu using the Chrome navigation script on this site.
Code:
.chromestyle{
width: 96%;
font-weight: bold;
}
.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.chromestyle ul{
border:0;
width: 100%;
background: url(images/navigation_off.jpg) right center no-repeat; /*THEME CHANGE HERE*/
padding: 4px 0;
margin: 0;
text-align: right; /*set value to "left", "center", or "right"*/
}
.chromestyle ul li{
display: inline;
}
.chromestyle ul li a{
color: #FFFFFF;
padding: 4px .91em;
margin: 0;
text-decoration: none;
}
.chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
}
/* ######### Style for Drop Down Menu ######### */
.dropmenudiv{
position:absolute;
top: 0;
opacity: 0.90;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 0.916em;
line-height:18px;
z-index:100;
background-color: #e2e2e2;
visibility: hidden;
width:auto;
width:120px;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /*Add Shadow in IE. Remove if desired*/
}
.dropmenudiv a{
width: auto;
display: block;
text-indent: 3px;
border-bottom: 1px solid #b8b8b8; /*THEME CHANGE HERE*/ /*THEME CHANGE HERE*/
padding: 2px 4px;
text-decoration: none;
font-weight: bold;
color: #154B6F;
text-align:left;
}
* html .dropmenudiv a{ /*IE only hack*/
width: 100%;
}
.dropmenudiv a:hover{ /*THEME CHANGE HERE*/
color: #000000;
}
Now the code on the inside page that does the rounded bottom is from drupal, but the problem I ran into with it was that on Relocation the navigation was running off the right side of the page so you could not see half of it. That is why I decided to take it out and add Chrome. But here is the code from Drupal that makes the rounded corners.
Code:
#primary-menu ul.menu li ul {
background: transparent url(../acquia_marina/images/drop-bottom.png) no-repeat 0 bottom;
left: -999em;
opacity: 0.95;
margin: 0 0 0 -10px;
padding: 2px 0 4px 0;
position: absolute;
width: 144px;
z-index: 2;
}
Bookmarks