Page 2 of 4

How to deactivate fixed header and footer ?

Posted: Wed Feb 13, 2013 1:38 pm
by Ricki Ricardo

It's work. Thanks


How to deactivate fixed header and footer ?

Posted: Tue Sep 24, 2013 1:09 am
by Joop Verbaken6265165

Clicking outside of the phone frame on the pageName gives you the option to uncheck Show Header/Show Footer.


How to deactivate fixed header and footer ?

Posted: Mon Oct 07, 2013 7:44 pm
by Scott Schechtel6280324

Max, I am not able to see the show header/footer options when clicking outside the phone. I would like to remove the header and footer to have just an image in the background..


How to deactivate fixed header and footer ?

Posted: Mon Oct 07, 2013 8:01 pm
by Kateryna Grynko

Hi Scott,

Select your start screen in breadcrumbs to see these options.


How to deactivate fixed header and footer ?

Posted: Mon Oct 07, 2013 8:06 pm
by Scott Schechtel6280324

Yep Got them removed but now the new page(Splash) is not even loading in the preview tester. I want it to open to the original mainscreen on a 3 second timer and I have this code to do the invoke: Tiggzi("mobileheader").hide();
Tiggzi("mobilefooter").hide();
$(".ui-page").triggerHandler('updatelayout');

Nothing happens....


How to deactivate fixed header and footer ?

Posted: Tue Oct 08, 2013 11:23 am
by Maryna Brodina

Hello! There is no navigation to another page in your code
preTiggzi("mobileheader").hide();
Tiggzi("mobilefooter").hide();
$(".ui-page").triggerHandler('updatelayout');/pre
Please try the following code:
presetTimeout(function(){Appery.navigateTo('ScreenName',{});} , 3000);/pre


How to deactivate fixed header and footer ?

Posted: Fri Oct 25, 2013 4:41 pm
by Rashiem Page

Does this still apply with all of the updates using the appery builder?


How to deactivate fixed header and footer ?

Posted: Fri Oct 25, 2013 7:17 pm
by Kateryna Grynko

Hi,

Yes. You can use Position parameter on Properties panel for footer and header (can be 'fixed' or 'inline').


How to deactivate fixed header and footer ?

Posted: Wed Dec 04, 2013 1:56 pm
by Michael4771079

Hi,
I have used the code above to keep the footer and header in place, but its not working, on my login page when user clicks on the textinput to enter their details the footer moves into the page, making it difficult to see the input.

How can I ensure the footer position is fixed to the bottom of the screen?

thx


How to deactivate fixed header and footer ?

Posted: Wed Dec 04, 2013 5:35 pm
by Kateryna Grynko

Hi Michael,

You can add this CSS code:pre[data-role=footer]{
position: fixed;
top: auto;
bottom: 0;
}/pre