I am working on a JQuery Mobile app and looking to enhance the appearance of the buttons in the header section. Here is what I currently have:
.my-btn-hdr { text-transform:uppercase; background-color:blue; color:white; min-height:33px; width:93px; }
...
<div id="myPage" data-role="page" data-dom-cache="false">
<div data-role="header" data-position="fixed">
<a href="#" data-icon="arrow-l" data-iconpos="notext" data-direction="reverse" class="ui-btn-left jqm-back">Back</a>
<h1>MyApp</h1>
<a id="saveButton" href="#" class="ui-btn-right my-btn-hdr">Save</a>
</div>
<div data-role="content">
...
</div>
</div>
Upon rendering, I observed that css classes like ui-btn, ui-btn-up-a, ui-shadow, and ui-button-corner-all are added, along with attributes like data-corners="true", data-shadow="true", and data-iconshadow="true".
I'm curious how I can customize button styles specifically within the header of a jQuery mobile app?