I don’t want to use headers (because in the end, I need 3 headers, or even more in the future).
I don’t want to use ion-content, because I want the list only to be scrollable and not the whole page.
If you have any idea how I could accomplish that, would be lovely.
Thanks in advance !
PS: Adding a over the makes it work.
But I though the list didn’t need any scroll around to be scrollable.
1.I recommend you to use ion-content still. The scroll bar is very nicely designed. The problem is that ion-content itself is absolutely positioned(top). You may want to wrap most of the content in it in any view. And fixed positioning your other selections.
2.If you just hate it. Use overflow:scroll in css or allow overflow scroll in ion-scroll or ion-content
Sorry for late reply.
I didn’t test your structure. But according to this hierarchy it may be breaking the html structure.
If you want to scroll some part of the content you may just refer to:
overflow:scroll (visible,hidden)
This is a css definition, you may look it uphere. http://www.w3schools.com/cssref/pr_pos_overflow.asp
Also when you want some part scrollable and other’s not you may need to add a attribute to your ion-content tag like
<ion-content scroll=“false”>
The down-side of this method is that it won’t have a scroll bar.