Skip to:
Content
Pages
Categories
Search
Top
Bottom

bbPress on the Profile page links position code

  • The Profile Edit links are displaying off the right side of web page

    How doe the postion code need to be set to move the links back onto the web page?

    #profile-menu {

    list-style: none;

    position: absolute;

    right: 0;

    }

    #profile-menu li {

    font-size: 1.1em;

    background-color: #eee;

    padding: 4px 7px;

    display: inline;

    border-top: 3px double #9e9e9e;

    position: relative;

    top: -10px;

    }

    #profile-menu li.current {

    background-color: #ddd;

    border-top: 1px solid #9e9e9e;

    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Try something like this:

    #profile-menu {
    list-style: none;
    position: absolute;
    left: 200 px;
    }

    Trent

    #profile-menu {

    list-style: none;

    position: absolute;

    left: 200 px;

    }

    It fixes to the left.

    I have tried varaiations.

    The style_old.css has the same code for the profile menu.

    I wonder how it got out of wack.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.
Skip to toolbar