I have a standard page with a <div data-role="header"> tag that has an image in it. When I use a link on the page, it navigates to the next page correctly. When I hit the BACK button, it goes back correctly, but the header div disappears and the rest of the page shifts up to fill the space where the header was. Here is the full header for the initial page:
<div data-role="header" data-backbtn="false">
<div class="head">
<span class="homelogo"><img src="images/SN_big_logo.png" alt="SN_big_logo" /></span>
</div>
<div data-role="navbar">
<ul>
<li><a href="index.html" class="ui-btn-active">Widgets</a></li>
<li><a href="./wadgets/">Wadgets</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->
You'll see the navbar in there, too. That actually does NOT disappear, but the logo image DOES disappear.
Any ideas?