basically I am trying to set a background color (or image). I am writing in HTML CSS and JQuery Mobile.
I m trying to create a basic AppMobi app but I don t seem to be able to change my background in the following example:
<div data-role="page" id="page">
<div data-role="header" data-theme="c">
<h1>Page One</h1>
</div>
<div data-role="content" data-theme="c">
<ul data-role="listview" data-theme="b">
<li><a href="#page2">Page Two</a></li>
<li><a href="#page3">Page Three</a></li>
<li><a href="#page4">Page Four</a></li>
<li><a href="#page3" data-role="button" data-icon="delete">Delete</a></li>
</ul>
</div>
<div data-role="footer" style="position:fixed; bottom:0;" data-theme="c">
<h4>Page Footer</h4>
</div>
</div>
I have tried to both change the background in HTML and CSS, but I don t seem to be able to change the background color page 1 (example). Page 1 includes 4 buttons, and a "sticky footer". The buttons shown on top of screen, but the content between buttons or lists and footer will not change color. I tried writing HTML or CSS in Header and also inline.
How would I be able to change the background color of this div chunk?
Thanx in advance