Remove white space at the bottom
Posted: Tue Dec 23, 2014 1:32 pm
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
Louay,
could you please clarify, do you use any css rule for your background image?
Hi,
Yes i use css within the JS file of the page, here is the code :
Code: Select all
Apperyio('mobilecontainer').css('background-image','url("-------")','no-repeat');
Apperyio('mobilecontainer').css('background-size','cover');
Apperyio('mobilecontainer').css('-webkit-background-size','cover');
Apperyio('mobilecontainer').css('-moz-background-size','cover');
Apperyio('mobilecontainer').css('-o-background-size','cover');
Hi Louay,
I tried following CSS code and it works correctly without footer for this page.
#test_mobilecontainer{
/* you should change "a_01.jpeg" with file name you need. */
background: url(../../../../files/views/assets/image/a_01.jpeg) no-repeat;
background-size: cover;
}
Regards.