With the default Jasny Bootstrap plugin, the default class is "navmenu-fixed-left". You can change the class to "navmenu-fixed-right" so that the menu moves to the right:
<div class="navmenu navmenu-default navmenu-fixed-right offcanvas" role="navigation"> <ul class="nav navmenu-nav"> <li><a href="about.php">About</a></li> <li><a href="capabilities.php">Capabilities</a></li> </ul> </div>
If you also want the toggle button to appear on the right side, you need to configure some CSS:
.navbar-default .navbar-toggle-box { float: right; margin-left: 15px; margin-right: 0; margin-top: 0; position: absolute; right: 0; }
source share