Remove sidebar left

You can remove the Left Sidebar by default just adding the class am-nosidebar-left into the main wapper element, like this:

<html lang="en">
  <body>
    <div class="am-wrapper am-nosidebar-left">
      <nav class="navbar navbar-default navbar-fixed-top am-top-header">
        <!-- Top bar -->
      </nav>
      <div class="am-content">
        <!-- Main content -->
      </div>
      <div class="am-right-sidebar">
        <!-- Right sidebar -->
      </div>
    </div> 
  </body>
</html>