Is it possible to have PTR inside the tab?

like

because it is where the page-content is…

Hey @seanschmidt, to proper help you, you’ll need to share more info about your setup :sweat_smile:
(coreJS?, vue?, angular?)

Anyway… it’s worth you take a look in the property: page-content in f7-page,
where you can disable the auto include of a f7-page-content and then you define where you want to place it with ptr.

on Vue is something like:

<f7-page :pageContent="false">
  <anyElementYouWant />
  <anyElementElseYouWant />

  <f7-page-content ptr /> <!-- Only here ptr responds -->
</>

i actually use corejs

Even easier:

<div class="page-content ptr-content" data-ptr-distance="55" data-ptr-mousewheel="true">
  <div class="ptr-preloader">
  <div class="preloader"></div>
  <div class="ptr-arrow"></div>
</div>

Docs: