It would be nice to add the option to right align the Main Menu through Bootstrap Settings by adding the .navbar-right class from docs.

In the interim, the following CSS works fine.

.navbar-nav {
  float: right;
}

Comments

markhalliwell’s picture

Status: Active » Closed (won't fix)

The .navbar-right class is for the actual elements inside the navbar, not the navbar itself. Also given that this would require unique logic to determine which element you would actually want to make float right, there is no good generic way to do this in the base-theme. This will have to remain as a "per use case" implementation in sub-themes.

waverate’s picture

Mark, thank you for the quick reply.