Greetings,
I’m trying to set up a relatively complex view with 3 children, basically showing a div with some information, and underneath it some tabs for navigation within. For some reason it shows other viewings just fine, but it won’t show any tab tags.
The states i’m using are:
nav // navigation bar
nav.item // showing some info before tabs, including a view to the state below
nav.item.network // tabs
So within the nav.item.network view it shows this just fine:
<div style="background: red; height: 200px; width: 200px"></div>
But when I add simple tab tags instead, is just shrinks the red box’s height and not showing any tabs:
<div class="tabs-striped tabs-top tabs-dark tabs-icon-top">
<div class="tabs">
<a class="tab-item active" href="#">
<i class="icon ion-home"></i>
Test
</a>
<a class="tab-item" href="#">
<i class="icon ion-star"></i>
Favorites
</a>
</div>
</div>
Needless to say when I remove the red box it simply doesn't show anything, and the tabs are showing up just fine with a simple view (such as nav.item), but then it doesn't show the information I wish to present above the tabs.
I hope I was clear enough, what could possibly be the problem? Much thanks for any help!