Hi, where is the setting to show my logo when a page is loading?
Thanks.
Hi,
We do not have this setting. You can refer to the HTML version layout builder here.
https://preview.keenthemes.com/metronic8/demo1/layout-builder.html
Add these attributes in the body tag:
data-kt-app-page-loading="on"
data-kt-app-page-loading-enabled="true"
<div class="page-loader flex-column">
<img alt="Logo" class="theme-light-show max-h-50px" src="/metronic8/demo1/assets/media/logos/keenthemes.svg">
<img alt="Logo" class="theme-dark-show max-h-50px" src="/metronic8/demo1/assets/media/logos/keenthemes-dark.svg">
<div class="d-flex align-items-center mt-5">
<span class="spinner-border text-primary" role="status"></span>
<span class="text-muted fs-6 fw-semibold ms-5">Loading...</span>
</div>
</div>