In your site-wide.css(side wide) or custom.css(home) in your wordpress themes theme.
custom.css (line 83)
#header {
background: none;
padding:0 25px 20px;
position: relative;
}
custom.css (line 87)
#header ul#nav {
float:right;
margin:-63px -5px 0 0;
}
custom.css (line 91)
#header ul#nav li {
float:left;
margin:-20px 0 0 18px;
}
Hope that helps, I had the same problem there is some style inconsistencies between the bphome and bpmembers styles.
false alarm, that only worked when the browser was minimized, when it was set to full the home theme menu items were pushed up so high that i couldnt even see them
Ok I see you have position relative set for both on the header, this allows for some handy position absolute inside.
Set the margin on the #nav and #nav li to 0 and leave all the other properties, then set the nav to position: absolute, and top: -5px, right 20px(or your pref from the right)
#header ul#nav {
margin: 0;
position: absolute;
top: -5px;
right: 20px;
}
#header ul#nav li {
marign:0 0 0 18px;
}
This should make it more consistent instead of fighting with negative margins.
Thanks for your help, I think that did it!
Your welcome, glad to help:)