Change Logo

Change Logo

To change logo : package/demos/src/main/partials/logo-sidebar.html
Put the logo image into the assets/images/logos folder.
                        
<div class="brand-logo d-flex align-items-center justify-content-between">
  <a href="../main/index.html" class="text-nowrap logo-img">
      <img src="../assets/images/logos/dark-logo.svg" class="dark-logo" alt="Logo-Dark" />
      <img src="../assets/images/logos/light-logo.svg" class="light-logo" alt="Logo-light" />
  </a>
  <a href="javascript:void(0)" class="sidebartoggler ms-auto text-decoration-none fs-5 d-block d-xl-none">
      <i class="ti ti-x"></i>
  </a>
</div>
                            
                          
                                

Change Logo

To change logo : src/html/*.html
Put the logo image into the assets/images/logos folder.
                        
<div class="brand-logo d-flex align-items-center justify-content-between">
  <a href="../main/index.html" class="text-nowrap logo-img">
      <img src="../assets/images/logos/logo.svg" alt="Logo" />
  </a>
  <a href="javascript:void(0)" class="sidebartoggler ms-auto text-decoration-none fs-5 d-block d-xl-none">
      <i class="ti ti-x"></i>
  </a>
</div>