I'm doing a hybrid app with Framework7, I want to do it with a tab bar that will be below. Everything works perfectly as long as in the pages of the tab bar I have not written neither text nor code, but if I write or add anything the navbar moves up to below the limit of the app (You have to scroll down to see it) and you can not click on the tab bar to take them to their respective pages.
This is the tab bar code:
<div class="toolbar tabbar tabbar-labels">
<div class="toolbar-inner">
<a href="#tab1" class="tab-link active">
<i class="icon demo-icon-1"></i>
<span class="tabbar-label">Label 1</span>
</a>
<a href="#tab2" class="tab-link">
<i class="icon demo-icon-2">
<span class="badge bg-red">5</span>
</i>
<span class="tabbar-label">Label 2</span>
</a>
<a href="#tab3" class="tab-link">
<i class="icon demo-icon-3"></i>
<span class="tabbar-label">Label 3</span>
</a>
<a href="#tab4" class="tab-link">
<i class="icon demo-icon-4"></i>
<span class="tabbar-label">Label 4</span>
</a>
</div>
</div>
And this is the code of the first page with what I have included (an item list and some text), and for the tab bar to look and work I have to remove the text and the item list.
<div data-page="index-1" class="page">
<!-- Scrollable page content-->
<div class="page-content">
<div class="content-block-title"><center><font size="3">Download Apps!<font size="3"></center></div>
<div class="content-block">
<font size= "3">
<p><center>Here's where you can download any app/tweak you want!</center></p>
<div class="content-block-title"><center>Categories:</center></div>
<div class="list-block media-list inset">
<ul>
<li>
<a href="#" class="item-link item-content">
<div class="item-media"><img src="..." width="44"></div>
<div class="item-inner">
<div class="item-title-row">
<div class="item-title">Hacked apps</div>
</div>
<div class="item-subtitle">Prehacked apps with unlimited gold/gems/coins (Specified at app installation page!)</div>
</div>
</a>
</li>
...
</ul>
</div>
<font size= "3">
</div>
</div>
</div>
I have tried doing all kinds of things: removing only part of the code, etc. but to make it work you have to remove everything and you can not leave anything.
PS: I passed the files to a friend and he said he did not know, but he uploaded it to a free server so you could see it and see if you could help me: link