Good catch, it should have black shadow to look good like top menu. I have updated my first post to include that
Also your menu hover on top should not have a white text color on white background. Text shadow should also have a slight change.
you have this in your user.css
Code:
#navigation li a:hover {
color: #F0FFFF;
background: #ddd url(img/bg9.png) bottom left repeat-x;
background: #fff url(img/bg8.png) top left repeat-x;
background: #F0FFFF;
border-radius: 5px;
color:#fff;
border: 0px solid #F0FFFF;
text-shadow: -1px -1px 2px #000;
}
Change that to the following, that would look good
Code:
#navigation li a:hover {
background: #F0FFFF;
border-radius: 5px;
color: #008FD4;
border: 0px solid #F0FFFF;
text-shadow: 1px 1px 2px #999;
}