It's work. Thanks
It's work. Thanks
Clicking outside of the phone frame on the pageName gives you the option to uncheck Show Header/Show Footer.
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..
Hi Scott,
Select your start screen in breadcrumbs to see these options.
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....
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
Does this still apply with all of the updates using the appery builder?
Hi,
Yes. You can use Position parameter on Properties panel for footer and header (can be 'fixed' or 'inline').
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
Hi Michael,
You can add this CSS code:pre[data-role=footer]{
position: fixed;
top: auto;
bottom: 0;
}/pre