Adminlte: How to add title in navbar

Created on 28 Jan 2016  路  3Comments  路  Source: ColorlibHQ/AdminLTE

I want to add a title in the center of the navbar-static-top.
Does anyone know how to do it?

Most helpful comment

you can try to add new div after the .navbar-custom-menu with the following style

.center-navbar{
  display: block; 
  text-align: center; 
  color: white; 
  padding: 15px; 
  /* adjust based on your layout */
  margin-left: 50px; 
  margin-right: 300px;
}

so the result looks like

<nav class="navbar navbar-static-top" role="navigation">
    <!-- Sidebar toggle button -->
    <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
    </a>

    <div class="navbar-custom-menu"><!-- notification etc here --></div>
    <div class="center-navbar"><!-- center navbar content here --></div>
</nav>

screenshot from 2016-01-29 13 23 49

All 3 comments

you can try to add new div after the .navbar-custom-menu with the following style

.center-navbar{
  display: block; 
  text-align: center; 
  color: white; 
  padding: 15px; 
  /* adjust based on your layout */
  margin-left: 50px; 
  margin-right: 300px;
}

so the result looks like

<nav class="navbar navbar-static-top" role="navigation">
    <!-- Sidebar toggle button -->
    <a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
    </a>

    <div class="navbar-custom-menu"><!-- notification etc here --></div>
    <div class="center-navbar"><!-- center navbar content here --></div>
</nav>

screenshot from 2016-01-29 13 23 49

Thanks @ikhsan017!

Any advice on getting this working for Admin LTE 2?

Was this page helpful?
0 / 5 - 0 ratings

Related issues

lenamtl picture lenamtl  路  3Comments

RaruRv picture RaruRv  路  3Comments

REJack picture REJack  路  3Comments

gaea44 picture gaea44  路  3Comments

LeoYong95 picture LeoYong95  路  4Comments