Am working on an android application using phonegap and jquery mobile. How to set a background image in this application?i need to put a backgroung image in all pages...
This is my code..See i have only one html page and the below code comes in that html page..also it represents a page..i have 6 pages like this in a single html page..i want to put a background image in these 6 pages.
<div data-role="page" id="home_page" data-content-theme="a" style="background-image:url(images/back.jpg)" >
<div data-role="header">
<div data-role="navbar">
<ul>
<li><a href="#about_us_page" id="products" data-transition="none">About</a></li>
<li><a href="#purpose_page" id="projects" data-transition="none">Purpose</a></li>
<li><a href="#design_page" id="awards" data-transition="none">Design</a></li>
</ul>
</div>
Exit content content.....
<div data-role="footer" style="position:absolute;bottom:0px;" class="footer">
<div data-role="navbar">
<ul>
<li><a href="#construction_page" id="about_us" data-transition="none">Construction</a></li>
<li><a href="#issues_page" id="contacts" data-transition="none">Issues</a></li>
<li><a href="#share_page" id="locations" data-transition="none">Share</a></li>
</ul>
</div>
</div>
Here i have given the backgroung image URl in the opening div tag...but it is not working..why is that?
Thanks