With the theme as is, there is no display of user menu (my account, logout) on the top bar as is common with the new Drupal 7 themes.

It's fairly easy to solve by...

  1. Assigning the User menu block to the header region (/admin/structure/block)
  2. Adding the following code to style.css:
    #header #block-system-user-menu ul li {
    float: left;
    list-style: none;
    }
    

Comments

mikejonesok’s picture

Thanks Carlos. How about support for a login block as well?