[FW7/Vue] Page Layout - how to add fixed (no scroll) area before page-content?

Hey guys, I sorry for posting this beginners Q once again. I’m trying to figure out how to place objects onto a page’s non scrolling area (like the Navbar), i.e. prior page-content. Is there some correct way of doing this, our it just a matter of some css hack?

When adding a div, prior the page-content, it shows up as expected above the scrolling area, however when scrolling down the last portion of the page text isn’t visible (scrolling is to short).

Thanks guys!

<template>
<!-- text block before page scrolling area -->	

<div class="upper-area">
  Paragraph text goes here
</div>

<!-- start page scroll area -->		

<f7-page-content>

	Text block goes here
	
</f7-page-content>

Put it under fixed slot:

<template #fixed>
  <div class="upper-area">
     Paragraph text goes here
  </div>
</template>

And add some extra styles like position:absolute and others you may need

Now that is what I call - No Limits :slight_smile:

Your reply is Much obliged - all the best!