I'm currently working on adjusting the size of the search filter bar in jQuery Mobile. Within my content div, I have the following ul tag:
<ul data-role="listview" id="alistview" data-inset="false" data-filter="true"></ul>
The complete header setup is as follows:
<div data-role="page" id="aPage" data-hash="false">
<div data-role="content">
<h3>Header</h3>
<ul data-role="listview" id="alistview" data-inset="false" data-filter="true"></ul>
</div>
</div>
Within my CSS, I've attempted both of these methods for styling:
.ui-listview-filter{
height: 10%;
font-size: 120%;
}
and:
#alistview .ui-listview-filter{
height: 10%;
font-size: 120%;
}
Unfortunately, neither approach has achieved the desired result. I believe I am using the correct class for styling purposes. Upon inspecting the code in Chrome with ctrl-shift-j, I noticed a segment of code related to the search bar that isn't present in my source code, likely generated by setting data-filter ="true"
. Any assistance in resolving this issue would be greatly appreciated!