Skip to:
Content
Pages
Categories
Search
Top
Bottom

Menu navigation location below logo in home theme

  • @tutsie

    Participant

    I added my own logo which is larger than the BuddyPress logo and this has pushed my menu navigation buttons below my logo when you minimize the browser in the home theme, and above the logo in the members theme.

    I would like my menu buttons to be above my logo in both themes, how can I change this?

    menu above logo http://sewmee.com/wordpress-mu/members

    menu below logo http://sewmee.com/wordpress-mu/

    thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • @joelpittet

    Participant

    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.

    @tutsie

    Participant

    awesome thanks!

    @tutsie

    Participant

    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

    @joelpittet

    Participant

    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.

    @tutsie

    Participant

    Thanks for your help, I think that did it!

    @joelpittet

    Participant

    Your welcome, glad to help:)

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Menu navigation location below logo in home theme’ is closed to new replies.
Skip to toolbar