I could use a little help with customizing the CSS for the Drop Down Menus in Thematic 0.9.
You can see what I'm working on here:
http://www.axis-host.com/~selkowit
Here's what I have for the CSS so far
.sf-menu li {
background: #04376C;
}
.sf-menu li li {
background: #04376C;
}
.sf-menu li li li {
background: #04376C;
}
.sf-menu a, .sf-menu a:visited { /* visited pseudo selector so IE6 applies text colour*/
color: #fff;
font-weight: bold;
}
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
background: #fff;
outline: 0;
color: #000;
}
.sf-menu .current_page_item a,
.sf-menu .current_page_ancestor a,
.sf-menu .current_page_parent a {
background: #fff;
border-bottom-color:#fff;
color: #000;
}
.sf-menu ul {
background: #04376C;
}
.sf-menu ul a {
background: #04376C;
}
.sf-menu ul a:hover {
color: #000;
}
I have a couple of issues to resolve.
1. Parent Page text color when the child pages are being navigated over. The "Press" and "Projects" sections have Drop Downs. When your rolling over the Child pages, the text "Press" or "Projects" goes from Black to White and disappears because the Background of the Tab is white. Which CSS class do I need to adjust for that?
2. Go to one of the Projects Child Pages. Then go back to the Drop Down Menu for that Projects. The Drop down menus are all white with Black Text. I want them to be the Dark Blue color with white text, but when rolled over the should go to white background with Black Text (just like the drop downs behave when your not actively viewing one of the Child pages for that Menu) How can I adjust the CSS for that?