Skip to:
Content
Pages
Categories
Search
Top
Bottom

Menu navigation location below logo in home theme

Viewing 6 replies - 1 through 6 (of 6 total)

  • joelpittet
    Participant

    @joelpittet

    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

    @tutsie

    awesome thanks!


    Tutsie
    Participant

    @tutsie

    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

    @joelpittet

    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

    @tutsie

    Thanks for your help, I think that did it!


    joelpittet
    Participant

    @joelpittet

    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