Hello Team,
I switched to the header layout and container fluid layout and now I have removed the toolbar by removing the below line in /views/layout/_default_header_layout_blade.php.
@include(config('settings.KT_THEME_LAYOUT_DIR').'/partials/header-layout/_toolbar')
above line was removed,
but now all container content is touching the header, there is no space between the container card and the header,
how to we solve this?
Hi Jigar,
Apologies for the delay in getting back to you.
To resolve the issue, you can add the mt-10 class to the kt_app_content div, like so:
<div class="app-content flex-column-fluid mt-10">
Thank you Faizal, It wroked out.