F7 v2 Custom toolbar in page

Custom toolbar in page, but “no-tabbar” can’t hide tabbar under views, and “no-toolbar” will hide the custom toolbar at the same time.Have you met the same problem or did I make a mistake?

<div class="page no-toolbar" data-page="po_approve_p" id="po_approve_p">
    ...
    <div class="toolbar toolbar-bottom-md">
         <div class="toolbar-inner"></div>
    </div>
</div>

You need to use no-toolbar and add custom style to your custom toolbar to keep it opened:

<div class="toolbar toolbar-bottom-md" style="transform: none"></div>
1 Like